We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got errors when executing py.test with a Python 3.8.5 and 3.7.5 Anaconda environments on a Windows 10 machine. Solution found here: maxpumperla/deep_learning_and_the_game_of_go#89 (comment)
Steps to reproduce and to fix:
cd c:\sources\aima-python
conda create -y --name aima -c conda-forge python=3.7.5
conda activate aima
pip install -r requirements.txt
py.test
pip install tensorflow --upgrade --force-reinstall
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I got errors when executing py.test with a Python 3.8.5 and 3.7.5 Anaconda environments on a Windows 10 machine.
Solution found here: maxpumperla/deep_learning_and_the_game_of_go#89 (comment)
Steps to reproduce and to fix:
cd c:\sources\aima-python
(or wherever you might have cloned)conda create -y --name aima -c conda-forge python=3.7.5
conda activate aima
pip install -r requirements.txt
py.test
(fails)pip install tensorflow --upgrade --force-reinstall
py.test
(works)The text was updated successfully, but these errors were encountered: