Django將項目移動到新環境的操作步驟

一、操作步驟

步驟一:輸出虛擬環境中已安裝包的名稱及版本號並記錄到 requirements.txt 文件中

pip freeze > requirements.txt

步驟二:復制工程到新環境,並在項目工程目錄(虛擬環境)下,打開cmd窗口

步驟三:將安裝包保存到文件夾packages裡

pip download -r requirements.txt -d packages 

步驟四:創建虛擬環境

python -m venv ./venv

步驟五:將文件導入到虛擬環境中

步驟六:pycharm打開項目工程,並在虛擬環境下執行安裝包

cd venv
pip install –no-index –find-links=packages -r requirements.txt

二、錯誤處理

1、報錯如下:

ERROR: Command errored out with exit status 1:

ERROR: Command errored out with exit status 1:
command: ‘e:\dev04\venv\scripts\python.exe’ -u -c ‘import sys, setuptools, tokenize; sys.argv[0] = ‘”‘”‘C:\\Users\\Administrator\\AppData\\Local\\Temp\\pip-install-nffom503\\mysqlclient\\setup.py'”‘”‘; __file__='”‘”‘C:\\Users\\
Administrator\\AppData\\Local\\Temp\\pip-install-nffom503\\mysqlclient\\setup.py'”‘”‘;f=getattr(tokenize, ‘”‘”‘open'”‘”‘, open)(__file__);code=f.read().replace(‘”‘”‘\r\n'”‘”‘, ‘”‘”‘\n'”‘”‘);f.close();exec(compile(code, __file__, ‘”‘
“‘exec'”‘”‘))’ install –record ‘C:\Users\Administrator\AppData\Local\Temp\pip-record-7nnhq8ry\install-record.txt’ –single-version-externally-managed –compile –install-headers ‘e:\dev04\venv\include\site\python3.9\mysqlclient’
cwd: C:\Users\Administrator\AppData\Local\Temp\pip-install-nffom503\mysqlclient\
Complete output (23 lines):

處理方式:手動安裝報錯模塊,此時該模塊的版本也會以“最新且適配的方式”安裝成功,出現該問題的原因是模塊與現有的python環境不適配。想要徹底解決,就要使得現在虛擬環境的版本與原先的python版本保持一致。

pip install mysqlclient

到此這篇關於Django將項目移動到新環境的操作步驟的文章就介紹到這瞭,更多相關Django項目移動到新環境內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: