I find it difficult to install some Python modules in Cloud9 ide.
I tried using easy_install (their recommended method) and pip, but from both I get a ton of warnings and end up with errors (find error messages below).
I read that a memory problem may be a problem, and that a possible solution is to increase the swap space, however, apparently Cloud9 does not allow this, since sudo swapon /swap1 does not show Operation not permitted
Has anyone ever installed pandas on Cloud9? Any other method I should try?
UPDATE I managed to install pandas using the Linux distribution package manager: sudo apt-get install python-pandas however I get version 0.13 and I need the current version 0.16 to use pandasql.
Here is what I do sudo easy_install pandas :
x86_64-linux-gnu-gcc: internal compiler error: Killed (program cc1) Please submit a full bug report, with preprocessed source if appropriate. See <file:///usr/share/doc/gcc-4.8/README.Bugs> for instructions. error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 4
Here is what I do pip install pandas :
Traceback (most recent call last): File "/usr/bin/pip", line 9, in <module> load_entry_point('pip==1.5.4', 'console_scripts', 'pip')() File "/usr/lib/python2.7/dist-packages/pip/__init__.py", line 185, in main return command.main(cmd_args) File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 161, in main text = '\n'.join(complete_log) UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 41: ordinal not in range(128)
source share