How do I use the bootstrap and configure commands in Ubuntu? - qt

I am trying to solve a problem getting QDevelop to build code given to me from another workstation and I am getting all kinds of errors which I posted a question about but havn't received any responses. See: QDevelop Qt IDE in Ubuntu 10.04 LTS Lucid Lynx qwt
I found someone having the same problem and I don't understand their solution. See: http://www.ruby-forum.com/topic/202124
Greetings,
I removed libqwt-dev and did a .bootstrap and .configure and make and
all is now well.
Rob
My question is how do I use the .bootstrap command (./bootstrap)? And what the heck does it do for that matter? I can't find anything when I Google it.
While I am at it what does .configure (./configure?) do and how do I use it also?
I am running Ubuntu 10.04 Lucid Lynx
Thanks,
DemiSheep

I switched to another IDE and OS's. :)

Related

Error while Using OpenAerostruct and OpenMDAO together

When I run the code given in the document on combined aero and structure I go this error:
AttributeError: 'module' object has no attribute 'matlib'
Based on the previous answer I had got, I tried to install the updated version of 'matplotlib' , but this has not solved the problem. Any help will greatly help me as I am a FORTRAN era person and a new convert to Python.
It looks like you're trying to use an intel compiled version of python and numpy can't find an necessary underlying library. Something is messed up in your python/numpy install.
This has nothing to do with OpenAeroStruct or OpenMDAO. If you can't fix your install, I suggest trying out the Anaconda python distribution, which should have everything precompiled correctly.
I don't have enough rep to comment, but please view this answer as a comment and I'll edit it once I can answer more properly.
That sounds like a numpy installation issue. Could you please post the entire error trace that you get when you try running the command?
Additionally, what system are you on (Windows, Mac, Linux), how did you install Python, and have you tried any other Python-based code that you can get to work successfully?
Edit: the most recent version of OpenAeroStruct has been modified to avoid this issue altogether.

Problems when packaging pysnmp with pyinstaller

When I tried to use pyinstaller to package my pysnmp based code to exe file, I met the same problem as described in PyInstaller does NOT work when including Pysnmp
However, after I changed the spec file as suggested, I got another error:
Error loading Python DLL 'C:\Users\***\AppData\Local\Temp_MEI124682\python36.dll'.
LoadLibrary: The specified module could not be found.
I'm using windows 10, Python3.6.4-32bit
I'm very confused, can anybody tell me where could be the problem and how can I solve it?
Thank you in advance.
Today it finally works. I used a 32-bit python 3.6.4 before, now I downloaded a 64-bit python 3.6.4, and it works, although I don't know why. My windows is 64-bit.
in addition to coutingstar's above answer if nothing seems to work out for this issue uninstall and reinstall the version of python that matches your os version and then try the same steps.

Create a New Plone addon mrbob error

I want to start developing of my first test addon. I have a problem on the basis of mr.bob. Any described ways have leaded to one result. my documentation
log image
Check
mrbob --help
do the same answer.
After I came to the conclusion the problem is in pre-installed Python2.7 with no worked mr.bobe and bobtemplates. I do not know how to make a working set.
Looking at your traceback I guess mr.bob is not fully supporting Windows.
The readline module on Windows is not available. There's some alternatives like pyreadline.
Seems it's a know issue: see https://github.com/domenkozar/mr.bob/issues/49
Don't know about mr.bob, but you could alternatively try adi.devgen (disclaimer: one of my add-ons). Install it with pip:
pip install adi.devgen
And then do:
devgen addOn yournamespace.youraddonname

building brackets was "Done, without errors" in Debian Wheezy, but

i was trying to build "brackets sprint 40" from source code (by following #jasonsanjose instructions look #4816 and the official wiki's page here) in my 32bit Wheezy, Using CEF3 (Verion 3.1547.1406_linux32_release with glibc 2.13) and everything was OK .
when i ran grunt build and grunt installer the output was: Running "build" task
Running "build-linux" task
Done, without errors.
and when i installed .deb package and executed it in the terminal , this error has been thrown:brackets: libcef_dll/wrapper/libcef_dll_wrapper.cc:120: int CefExecuteProcess(const CefMainArgs&, CefRefPtr): Assertion `false' failed.
Aborted
I did rebuild it many times, but the problem persist.
And this is where i stopped, i don't know where the problem lies.
some help will be appreciated, thank you in advance.
There's a duplicate of this question with longer discussion posted here - https://github.com/adobe/brackets/issues/8170.
Note: This problem shouldn't affect a "vanilla" brackets-shell build on Linux -- it's specific to a hack some people have developed to support an older version of Debian than Brackets officially supports. This requires swapping in a newer version of the CEF library, which is not always easy to do since they are not usually backwards-compatible.

How to create installer for solaris

I have already createdrpm file for my application. It works fine for Fedora linux. also the same worked fine for linux mint. But Solaris does not support rpm. So how to create installer package for solaris OS. I have solaris 10 linux as OS.
Thanks
Sunil Kumar Sahoo
The Solaris OS packaging format (pkgadd) is described in this Sun Solaris document.
There is also an open source project called OpenPKG that can be used on most Unix/Linux variants. I have not used it myself though.
Here is an interesting post about converting RPMs to Solaris Pkg.
Solaris packaging is the way to go. It's a little odd when you first look at it, but it's actually not too difficult once you get your head around it.

Resources