How to install Python packages from the tar.gz file without using pip install

前端 未结 7 895
甜味超标
甜味超标 2020-11-27 10:26

Long story short my work computer has network constraints which means trying to use pip install in cmd just leads to timing out/not finding package errors.

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 10:39

    Install it by running

    python setup.py install
    

    Better yet, you can download from github. Install git via apt-get install git and then follow this steps:

    git clone https://github.com/mwaskom/seaborn.git
    cd seaborn
    python setup.py install
    

提交回复
热议问题