0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Django 仮想環境の構築

Last updated at Posted at 2023-03-11
  • ファイル内に仮想環境”myvenv”を作成

    ※なぜか一回”myenv”で作成したので作りなおした

python3 -m venv myvenv
  • 仮想環境に入るコマンド

ポートフォリオサイトを新しくするのに、どうせならdjangoの勉強もかねて実装してみようかの試み

.\myenv\Scripts\activate

↑エラーが出た。セキュリティ上の問題らしい

<解決法①>
以下のコードを実行すれば設定が変わる

Set-ExecutionPolicy RemoteSigned

<解決法②>
vscodeのデフォルト設定で制限がかかっているので、setting.jsonに以下の記述を追加。すでに記述がある場合は”,”を追加することを忘れずに

参照(https://qiita.com/startours777/items/2d35f2c6de12071a4c77

"terminal.integrated.env.windows":{
"PSExecutinpolicyPreference":"RemoteSigned"
}

無事入れました

後は→https://zenn.dev/hathle/books/django-render-book/viewer/02_project

の通り

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?