Skip to content

Commit

Permalink
Merge pull request #731 from openego/fixes/#718-update-python-version…
Browse files Browse the repository at this point in the history
…-in-documentation

Update python version to 3.10 in the documentaion
  • Loading branch information
ClaraBuettner authored Mar 11, 2024
2 parents 9168b9b + 5e9672d commit c866fc7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ you create a virtual environment (where you like it) and activate it:

.. code-block:: bash
$ virtualenv venv --clear -p python3.8
$ virtualenv venv --clear -p python3.10
$ source venv/bin/activate
$ cd venv
Expand Down
2 changes: 1 addition & 1 deletion doc/developer_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Installation for Developers

.. code-block:: bash
$ virtualenv --clear -p python3.8 etrago``
$ virtualenv --clear -p python3.10 etrago``
$ cd etrago/
$ source bin/activate
Expand Down
6 changes: 3 additions & 3 deletions doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ you create a virtual environment (where you like it) and activate it:

.. code-block:: bash
$ virtualenv venv --clear -p python3.8
$ virtualenv venv --clear -p python3.10
$ source venv/bin/activate
$ cd venv
Expand All @@ -40,14 +40,14 @@ Windows or Mac OSX users
========================

For Windows and/or Mac OSX user we highly recommend to install and use Anaconda
for your Python3 installation. First install Conda including python 3.8 or
for your Python3 installation. First install Conda including python 3.10 or
higher version from https://www.anaconda.com/download/ and open an anaconda
prompt as administrator and run:

.. code-block:: bash
$ conda config --add channels conda-forge
$ conda create -n etrago_env python=3.8
$ conda create -n etrago_env python=3.10
$ conda activate etrago_env
$ pip install eTraGo
Expand Down

0 comments on commit c866fc7

Please sign in to comment.