自己的購物網站自己做
- Python 3.5+
- Django 1.10+
(Windows)
python -m venv VENV
VENV\Scripts\activate
(Linux / OS X)
python3 -m venv VENV
source VENV/bin/activate
You need to specify your python path when creating the virtual environment:
mkvirtualenv --python=$(which python3) eshop
Use pip:
pip install django
cd
into the bookshop
directory:
cd bookshop
And migrate the database:
python manage.py migrate
Now you’re all set!
python manage.py runserver
Then you can open the website: http://localhost:8000/
To log in, you need to create a superuser:
python manage.py createsuperuser
After setup the username and password, you can login: http://localhost:8000/admin/