欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu下安装python开发集成环境 博客分类: linux linuxpythonanacondapfylll 

程序员文章站 2024-03-13 15:25:21
...

本文主要讲述作者自己安装python环境的步骤,主要使用anaconda集成环境。

 

首先下载anaconda安装包: https://www.anaconda.com/distribution/

 

在终端运行指令:

bash ~/Downloads/Anaconda3-5.3.0-Linux-x86_64.sh

其中~/Downloads/是下载anaconda的目录

 

按照其中提示进行操作。

 

修改环境变量:

        在终端输入: gedit .bashrc

        打开文件后,在文件末尾加入:

export PATH="/<path to anaconda>/bin:$PATH"

<path to anaconda>是安装目录。

       在终端运行:source .bashrc 

       使环境变量生效

 

下面是安装fpylll库。

更新conda:

dcs@dcs-Veriton-T830:~$ conda --version
dcs@dcs-Veriton-T830:~$ conda update conda

下载fpylll库:

我们从conda官网去找fpylll库:首先进入官网 https://conda-forge.org/

然后点击package项:

 

 

然后搜索pfylll

进入以后:

 

按照提示进行安装:

dcs@dcs-Veriton-T830:~$ conda config --add channels conda-forge
dcs@dcs-Veriton-T830:~$ conda install fpylll

更新IDE

dcs@dcs-Veriton-T830:~$ conda update spyder

 

结束!