我很难在Cloud9 ide中安装某些Python模块。
我尝试过使用easy_install(他们推荐的方法)和pip但是我得到了大量的警告并以错误结束(找到下面的错误消息)。
我已经读过内存问题可能是问题,可能的解决方案是增加交换空间,但显然Cloud9不允许,因为sudo swapon /swap1
无法显示Operation not permitted
有人曾在Cloud9中安装过大熊猫吗?我应该尝试其他任何方法吗?
更新:我设法使用Linux发行版的软件包管理器安装pandas:sudo apt-get install python-pandas
但是我得到了版本0.13,我需要使用当前版本0.16才能使用pandasql。
这就是我要做的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
这就是我要做的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)
答案 0 :(得分:7)
我创建了2个脚本来完成这项工作:
脚本01:
#! /bin/bash
#Downloading Miniconda 64Bits for Linux
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
#Changing file permission for execution
chmod a+x Miniconda3-latest-Linux-x86_64.sh
#Installing Miniconda
./Miniconda3-latest-Linux-x86_64.sh
# Follow instructions to complete install
# Close and reopen terminal.
echo 'Please close the terminal reopen and run install02.sh script now'
脚本02:
#! /bin/bash
# Creating environment (sandbox instance called py3 [choose the name you want])
conda create -n py3 python=3 ipython
# Activating created environment
source activate py3
# Install package manager pip
conda install pip
# The installation installs the packages
#pip install numpy
#pip install pandas
#pip install matplotlib
# which ipython is to be used in the environment? pip freeze shows it
pip freeze
# Installing ipython notebook
conda install ipython-notebook
# Installing the packages
conda install numpy
conda install pandas
conda install matplotlib
我安装了不仅仅是pandas,因此您可以在脚本中看到使用conda install package_name
答案 1 :(得分:5)
自提出问题以来,事情可能已经发生了变化,但我发现我可以使用以下内容使用Python 3点:
$ sudo pip-3.6 install pandas
请注意,符号似乎是pip-3.6
而不是典型的pip3
答案 2 :(得分:1)
我更喜欢使用以下命令下载主程序包。
wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh
然后使用以下内容按照Continuum中的描述进行安装。
bash Anaconda3-4.2.0-Linux-x86_64.sh
它安装了所有东西,包括conda,pip,numpy,scipy和matplotlib等。
答案 3 :(得分:1)
我在尝试安装pandas版本0.20.3时遇到同样的问题。我认为问题是默认情况下virtualenv将安装Python 2,这个版本的pandas可能无法正常工作。
我的解决方案是在云端9中使用Python 3创建环境:
virtualenv -p python3 test
然后激活环境:
source test/bin/activate
更新setuptools和pip:
pip install -U setuptools
pip install -U pip
用pip安装pand:
pip install pandas
这样做了。
答案 4 :(得分:0)
我不确定我正在使用哪个版本的Cloud9。但是在de函数目录中的终端上使用以下命令:
venv/bin/pip install pandas -t .
一直有效