2022年5月17日火曜日

wslでdjango その1

 ローカルでもdjangoいれてみる
まずminicondaを入れてみる
 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
 sh Miniconda3-latest-Linux-x86_64.sh
source .bashrc
プロンプトの色が見にくいので
dircolors -p > ~/.dircolors
34青を37白に
eval $(dircolors -b ~/.dircolors)を.bashrcに追記

condaで仮想環境に入ったら
conda install django==3.2
django-admin startproject helloworld
cd helloworld
python3 manage.py runserver
でhttp://127.0.0.1:8000/で確認できる

0 件のコメント:

コメントを投稿