Replace mentions python2 with python

In several places the README references python2, these have all been
replaced with python or python3, where applicable.
This commit is contained in:
Frank Vanderham 2018-04-23 20:43:46 -06:00 committed by Jelle van der Waa
parent 0ca04132d0
commit 7bc2457012

View File

@ -17,8 +17,8 @@ See AUTHORS file.
# Dependencies
- python2
- python2-virtualenv
- python
- python-virtualenv
# Python dependencies
@ -26,16 +26,16 @@ More detail in `requirements.txt` and `requirements_prod.txt`; it is best to
use virtualenv and pip to handle these. But if you insist on (Arch Linux)
packages, you will probably want the following:
- python2-django
- python2-psycopg2
- python2-markdown
- python2-memcached
- python-django
- python-psycopg2
- python-markdown
- python-memcached
# Testing Installation
1. Run `virtualenv2`.
1. Run `virtualenv3`.
cd /path/to/archweb && virtualenv2 ./env/
cd /path/to/archweb && virtualenv3 ./env/
2. Activate the virtualenv.
@ -88,9 +88,9 @@ For PostgreSQL use packages/sql/update.postgresql_psycopg2.sql
To be able to create an account on your test environment an SMTP server is
required. A simple debugging SMTP server can be setup using Python.
python2 -m smtpd -n -c DebuggingServer localhost:1025
python -m smtpd -n -c DebuggingServer localhost:1025
In local_settings.py change the EMAIL_HOST to 'localhost' and the EMAIL_PORT to
In local\_settings.py add entries to set EMAIL\_HOST to 'localhost' and EMAIL\_PORT to
1025.
# Running tests and coverage