sh Core OS中安装了Python 3.6.0
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Core OS中安装了Python 3.6.0相关的知识,希望对你有一定的参考价值。
#!/bin/bash -uxe
VERSION=3.6.0.3600
PACKAGE=ActivePython-${VERSION}-linux-x86_64-glibc-2.3.6-401834
# make directory
mkdir -p /opt/bin
cd /opt
wget http://downloads.activestate.com/ActivePython/releases/${VERSION}/${PACKAGE}.tar.gz
tar -xzvf ${PACKAGE}.tar.gz
mv ${PACKAGE} apy && cd apy && ./install.sh -I /opt/python/
ln -sf /opt/python/bin/easy_install /opt/bin/easy_install
ln -sf /opt/python/bin/pip /opt/bin/pip
ln -sf /opt/python/bin/python /opt/bin/python
ln -sf /opt/python/bin/python /opt/bin/python3
ln -sf /opt/python/bin/virtualenv /opt/bin/virtualenv
以上是关于sh Core OS中安装了Python 3.6.0的主要内容,如果未能解决你的问题,请参考以下文章
无法在 mac os 中卸载 python 2.7
糟糕的 Python 包组织在我的路径中安装了一个“测试”包? (蟒蛇)
即使在环境中安装了django,Django服务器也不会运行
如何让 Mac OS 使用 Homebrew 安装的 python
在 CentOs 中安装 Python3 和 pip2
python中安装了pil库,但是编译的时候还是提示No module named 'PIL'