python环境问题

Posted Turing-dz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python环境问题相关的知识,希望对你有一定的参考价值。

一.电脑内的环境

1.查看:where python

2.查看里面的库:pip list

3.查看当前python环境:import sys>>print(sys.path)

4.python的标准库位置:%python安装路径%Lib

5.python的第三方库位置:%python安装路径%Libsite-packages

二.虚拟环境

1.查看:python info --envs

2.创建:conad create -n (name) python=3.6

3.激活:activate (name)

4.删除:conda remove --name (name) --all

以上是关于python环境问题的主要内容,如果未能解决你的问题,请参考以下文章

Anaconda中的python环境问题

python环境问题

Ubuntu18.0 解决python虚拟环境中不同用户下或者python多版本环境中指定虚拟环境的使用问题

解决问题:VScode使用python虚拟环境(图文并茂版)

Ubuntu安装软件出现依赖问题及基本python虚拟环境创建

python3.6虚拟环境以及flask的安装(常见问题)