Pycharm environment different than command line

.bash_profile is being read by bash (your command line interpreter) only. However if you want to preserve bash environment for PyCharm there is one true Linux way. Run PyCharm from your command line (from bash). Thus environment variables will be inherited from bash to pycharm. Read $man environ for information on linux environment inheritance process. … Read more

C++ linking error after upgrading to Mac OS X 10.9 / Xcode 5.0.1

The answer is there: https://mathematica.stackexchange.com/questions/34692/mathlink-linking-error-after-os-x-10-9-mavericks-upgrade There are two implementations of the standard C++ library available on OS X: libstdc++ and libc++. They are not binary compatible and libMLi3 requires libstdc++. On 10.8 and earlier libstdc++ is chosen by default, on 10.9 libc++ is chosen by default. To ensure compatibility with libMLi3, we need to choose … Read more

Genymotion, “Unable to load VirtualBox engine.” on Mavericks. VBox is setup correctly

I had the same problem and solved it by running the following command: sudo /Library/StartupItems/VirtualBox/VirtualBox restart In later versions, the command is sudo /Library/Application\ Support/VirtualBox/LaunchDaemons/VirtualBoxStartup.sh restart Make sure you’ve unblocked VirtualBox’s kernel extensions in System Preferences->Security and Privacy->General (You’ll get a popup when you install VirtualBox).

Glut deprecation in Mac OSX 10.9, IDE: QT Creator

You can still use it in 10.9. They’re sending you a pretty strong signal that they want you to stop, though… You can disable those warnings with the -Wno-deprecated-declarations compiler option. There’s also some difficulties including the right headers if you’re trying to use GL3 level features, because you need to include gl3.h for that, … Read more