I developed a relatively simple site with Django and I need to deploy it on a Windows VM hosted on a PC on the local network.
These are the requirements:
requirements.txt
JavaScript
9
1
asgiref==3.5.0
2
autopep8==1.6.0
3
Django==4.0.3
4
Pillow==9.0.1
5
pycodestyle==2.8.0
6
sqlparse==0.4.2
7
toml==0.10.2
8
tzdata==2022.1
9
Having no access to the internet, I followed these steps:
PC With Internet
JavaScript
4
1
mkdir dependencies
2
pip download -r requirements.txt -d "./dependencies"
3
tar cvfz dependencies.tar.gz dependencies
4
I then moved the tar file on the VM and did the following:
JavaScript
4
1
tar zxvf dependencies.tar.gz
2
cd dependencies
3
for %x in (dir *.whl) do pip install %x --no-index --force-reinstall
4
The above commands resulted in this pip freeze:
JavaScript
7
1
asgiref @ file:///C:/website/packages/dependencies/asgiref-3.5.0-py3-none-any.whl
2
Pillow @ file:///C:/website/packages/dependencies/Pillow-9.0.1-cp310-cp310-win_amd64.whl
3
pycodestyle @ file:///C:/website/packages/dependencies/pycodestyle-2.8.0-py2.py3-none-any.whl
4
sqlparse @ file:///C:/website/packages/dependencies/sqlparse-0.4.2-py3-none-any.whl
5
toml @ file:///C:/website/packages/dependencies/toml-0.10.2-py2.py3-none-any.whl
6
tzdata @ file:///C:/website/packages/dependencies/tzdata-2022.1-py2.py3-none-any.whl
7
As you can see Django and autopep8 fail to install even though the requirements should be met. What am I missing?
Any help pointing me to the solution would be very much appreciated!!
Thanks
BTW, this is the log:
JavaScript
68
1
(django_venv) C:websitepackagesdependencies>pip install dir --no-index --force-reinstall
2
ERROR: Could not find a version that satisfies the requirement dir (from versions: none)
3
ERROR: No matching distribution found for dir
4
5
(django_venv) C:websitepackagesdependencies>pip install asgiref-3.5.0-py3-none-any.whl --no-index --force-reinstall
6
Processing c:websitepackagesdependenciesasgiref-3.5.0-py3-none-any.whl
7
Installing collected packages: asgiref
8
Attempting uninstall: asgiref
9
Found existing installation: asgiref 3.5.0
10
Uninstalling asgiref-3.5.0:
11
Successfully uninstalled asgiref-3.5.0
12
Successfully installed asgiref-3.5.0
13
14
(django_venv) C:websitepackagesdependencies>pip install autopep8-1.6.0-py2.py3-none-any.whl --no-index --force-reinstall
15
Processing c:websitepackagesdependenciesautopep8-1.6.0-py2.py3-none-any.whl
16
ERROR: Could not find a version that satisfies the requirement toml (from autopep8) (from versions: none)
17
ERROR: No matching distribution found for toml
18
19
(django_venv) C:websitepackagesdependencies>pip install Django-4.0.3-py3-none-any.whl --no-index --force-reinstall
20
Processing c:websitepackagesdependenciesdjango-4.0.3-py3-none-any.whl
21
ERROR: Could not find a version that satisfies the requirement tzdata; sys_platform == "win32" (from django) (from versions: none)
22
ERROR: No matching distribution found for tzdata; sys_platform == "win32"
23
24
(django_venv) C:websitepackagesdependencies>pip install Pillow-9.0.1-cp310-cp310-win_amd64.whl --no-index --force-reinstall
25
Processing c:websitepackagesdependenciespillow-9.0.1-cp310-cp310-win_amd64.whl
26
Installing collected packages: Pillow
27
Attempting uninstall: Pillow
28
Found existing installation: Pillow 9.0.1
29
Uninstalling Pillow-9.0.1:
30
Successfully uninstalled Pillow-9.0.1
31
Successfully installed Pillow-9.0.1
32
33
(django_venv) C:websitepackagesdependencies>pip install pycodestyle-2.8.0-py2.py3-none-any.whl --no-index --force-reinstall
34
Processing c:websitepackagesdependenciespycodestyle-2.8.0-py2.py3-none-any.whl
35
Installing collected packages: pycodestyle
36
Attempting uninstall: pycodestyle
37
Found existing installation: pycodestyle 2.8.0
38
Uninstalling pycodestyle-2.8.0:
39
Successfully uninstalled pycodestyle-2.8.0
40
Successfully installed pycodestyle-2.8.0
41
42
(django_venv) C:websitepackagesdependencies>pip install sqlparse-0.4.2-py3-none-any.whl --no-index --force-reinstall
43
Processing c:websitepackagesdependenciessqlparse-0.4.2-py3-none-any.whl
44
Installing collected packages: sqlparse
45
Attempting uninstall: sqlparse
46
Found existing installation: sqlparse 0.4.2
47
Uninstalling sqlparse-0.4.2:
48
Successfully uninstalled sqlparse-0.4.2
49
Successfully installed sqlparse-0.4.2
50
51
(django_venv) C:websitepackagesdependencies>pip install toml-0.10.2-py2.py3-none-any.whl --no-index --force-reinstall
52
Processing c:websitepackagesdependenciestoml-0.10.2-py2.py3-none-any.whl
53
Installing collected packages: toml
54
Attempting uninstall: toml
55
Found existing installation: toml 0.10.2
56
Uninstalling toml-0.10.2:
57
Successfully uninstalled toml-0.10.2
58
Successfully installed toml-0.10.2
59
60
(django_venv) C:websitepackagesdependencies>pip install tzdata-2022.1-py2.py3-none-any.whl --no-index --force-reinstall
61
Processing c:websitepackagesdependenciestzdata-2022.1-py2.py3-none-any.whl
62
Installing collected packages: tzdata
63
Attempting uninstall: tzdata
64
Found existing installation: tzdata 2022.1
65
Uninstalling tzdata-2022.1:
66
Successfully uninstalled tzdata-2022.1
67
Successfully installed tzdata-2022.1
68
Advertisement
Answer
After unpacking the archive in the vm, use the --find-links
option.
JavaScript
2
1
pip install -r requirements.txt -f ./dependencies --no-index
2