Installing a pip package from within a Jupyter Notebook not working

前端 未结 10 2150
无人及你
无人及你 2020-12-02 09:24

When I run !pip install geocoder in Jupyter Notebook I get the same output as running pip install geocoder in the terminal but the geocoder package

10条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-02 09:44

    In jupyter notebook under python 3.6, the following line works:

    !source activate py36;pip install <...>
    

提交回复
热议问题