3
0

More than 3 years have passed since last update.

command not found: django-admin

Posted at

command not found: django-adminを解決

1.djangoのインストールができていない

2.venv環境に入っていない

1に関しては

ターミナル
(env)$ pip install django

2に関しては

ターミナル
brew install pyenv
``
```java:ターミナル
export PYENV_ROOT="${HOME}/.pyenv"
export PATH=${PYENV_ROOT}/bin:$PATH
eval "$(pyenv init -)"
ターミナル
source .bash_profile
ターミナル
pyenv install -l
ターミナル
pyenv install anaconda-2.4.0
ターミナル
pyenv versions
ターミナル
pyenv global anaconda-2.4.0
ターミナル
pyenv rehash

以上!

3
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
3
0