Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install pytorch-mirror via python pip




pytorch-mirror - pytorch模型、数据集国内镜像, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable

When you know about this project and you want to new install pytorch-mirror to support your project or you get trouble as ModuleNotFoundError: No module named "pytorch-mirror" or ImportError: cannot import name "pytorch-mirror" in your project, let follow this tutorial to install pytorch-mirror



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_pytorch-mirror_env

- Active the virtual environment

test_pytorch-mirror_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_pytorch-mirror_env

- Active the virtual environment

source test_pytorch-mirror_env/bin/active


Step 2: OK, now, let flow below content to start the installation pytorch-mirror

To install pytorch-mirror on Windows(CMD):

py -m pip install pytorch-mirror

To install pytorch-mirror on Unix/macOs:

pip install pytorch-mirror


Step 3: If you want to install a specific pytorch-mirror version, add ==<pytorch-mirror version> to the end command line

Example:

pip install pytorch-mirror==0.3.1


Please see the version list below table:

VersionReleased dateCommand
pytorch-mirror 0.5.12020-04-08T14:43:47Windows:

py -m pip install pytorch-mirror==0.5.1

Unix/macOs:

pip install pytorch-mirror==0.5.1

pytorch-mirror 0.5.02020-04-08T14:37:06Windows:

py -m pip install pytorch-mirror==0.5.0

Unix/macOs:

pip install pytorch-mirror==0.5.0

pytorch-mirror 0.4.12020-04-08T12:46:04Windows:

py -m pip install pytorch-mirror==0.4.1

Unix/macOs:

pip install pytorch-mirror==0.4.1

pytorch-mirror 0.4.02020-04-06T12:19:32Windows:

py -m pip install pytorch-mirror==0.4.0

Unix/macOs:

pip install pytorch-mirror==0.4.0

pytorch-mirror 0.3.12020-04-06T12:09:57Windows:

py -m pip install pytorch-mirror==0.3.1

Unix/macOs:

pip install pytorch-mirror==0.3.1


Step 4: Otherwise, you can install pytorch-mirror from local archives:

Download the distribution file from pytorch_mirror-0.5.1.tar.gz or the specific pytorch-mirror version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pytorch-mirror_downloaded_file>

On Unix/macOs:

pip install <path_to_pytorch-mirror_downloaded_file>


List distribution:


Project link:

- Homepage