카테고리 없음
Django when you want to upgrade your django version in venv
tofusoup429
2017. 12. 12. 15:18
Sometimes, you want to upgrade only a few module in your virtual environment. If that is the case, you can do it just simply with pip.
First, activate the virtual environment that has the modules you want to upgrade is placed.
Second, you just type
"pip3 install <the module name> --upgrade"
Then, the module is updated to the lastest version.
-end-