由于数据分析需要创建数据,想使用python的faker库,所以打算新建一个虚拟环境专门用于使用faker库。在这之前,电脑上已经安装了python2 ,python3。并且python2下已经安装了jupyter,ipykernel。
下面正式开始
1.创建虚拟环境
随便选一个文件夹,打开powershell,输入
PS D:\Program Files (x86)\pythonenv\faker\Scripts> virtualenv faker
然后会看到新出现了一个faker文件夹,这就是我们创建的虚拟环境。
2.激活虚拟环境
输入
PS D:\Program Files (x86)\pythonenv\faker\Scripts> . .\activate
3.安装jupyter和ipykernel
查看pip list ,会发现没有jupyter
安装jupyter
(faker) PS D:\Program Files (x86)\pythonenv\faker\Scripts> pip install jupyter
再安装内核ipykernel
(faker) PS D:\Program Files (x86)\pythonenv\faker\Scripts> pip install ipykernel
4.在相应虚拟环境 faker 下执行命令:
(faker) PS D:\Program Files (x86)\pythonenv\faker\Scripts> python -m ipykernel install --user --name faker --display-name "Python2 (f)"
打开jupyter
打开jupyter可以看到已经创建了新的kernel
安装faker包
jupyter进入python2(f)
发现import faker出错
解决很简单啦,直接pip install faker然后就解决啦!