我需要为 python3.x 安装 cython。我有一个安装了 python 2.6、2.7 和 3.2 的 ubuntu。尝试仅apt-get
安装 2.x 版本的 cython 包pymodules
。有没有办法定位特定版本?
答案1
答案2
python 2 和 3 位于不同的包中,因此对于 python 2
sudo apt-get install cython
对于 python3
sudo apt-get install cython3
答案3
尝试这个:
$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get install python3-pip
$ pip3 install --no-cache-dir Cython
查找 Cython 的版本,并检查是否为 Python3 安装 Cython
$ python3 -c "import Cython; print(Cython.__version__)"