linux子系统搭建python3

  1.  我之前win10系统有py3,所以就没有下载,直接输入python ,就会进入python环境,但是,什么包都没有
  2. 安装pip
    $ wget https://bootstrap.pypa.io/get-pip.py
    $ python get-pip.py
    $ pip -V  #查看pip版本

    更新pip版本:
    $ python -m pip install --upgrade pip
  3. 使用pip安装各个包

 $ pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose

  4.包的安装位置:

  C:UsersAdministratorAppDataLocalPackagesCanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgscLocalState ootfshomelfydelinux.locallibpython3.5site-packages

原文地址:https://www.cnblogs.com/lfydeblog/p/8528983.html