Skip to content

Commit

Permalink
Add note about python3.10 not being supported
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Dec 11, 2021
1 parent be6b1f6 commit e9c3f0c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ OS Specific steps are listed first, the [Common](#common) section below is neces
!!! Note
Python3.7 or higher and the corresponding pip are assumed to be available.

!!! Warning "Python 3.10 support"
Due to issues with dependencies, freqtrade is currently unable to support python 3.10.
We're working on supporting python 3.10, are however dependant on support from dependencies.

=== "Debian/Ubuntu"
#### Install necessary dependencies

Expand Down
5 changes: 3 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ function check_installed_python() {
fi
done

echo "No usable python found. Please make sure to have python3.7 or newer installed"
echo "No usable python found. Please make sure to have python3.7 or newer installed."
echo "python3.10 is currently not supported."
exit 1
}

Expand Down Expand Up @@ -205,7 +206,7 @@ function config() {
}

function install() {

echo_block "Installing mandatory dependencies"

if [ "$(uname -s)" == "Darwin" ]; then
Expand Down

0 comments on commit e9c3f0c

Please sign in to comment.