-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
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
Module not found #65
Comments
just run this from any terminal |
C:\Users\IgorMonteiroVieira> pip install q_tic_tac_toe
ERROR: Could not find a version that satisfies the requirement
q_tic_tac_toe (from versions: none)
ERROR: No matching distribution found for q_tic_tac_toe
C:\Users\IgorMonteiroVieira>
Em sáb., 25 de jan. de 2020 às 11:20, Priyansh Nama <
notifications@github.com> escreveu:
… just run this from any terminal
pip install q_tic_tac_toe
PS: make sure terminal has internet access.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#65>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADF5EIY4BYSEACKU7FF526DQ7RYEXANCNFSM4KLN3DJA>
.
|
so the problem is that there is no package distribution available which is named as "q_tic_tac_toe" on the pypi.org . You can't work with this package untill you install it. |
Can you check the URL provided? It seems the command not working. |
Which URL? can you plzz provide the URL here. |
CUI: pip install tic-tac-toehttps://pypi.org/project/tic-tac-toe/
<http://url/>
Em sexta-feira, 31 de janeiro de 2020, Priyansh Nama <
notifications@github.com> escreveu:
… Which URL? can you plzz provide the URL here.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#65>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADF5EI3IS2HVQN6H5MVQDKLRAUDXFANCNFSM4KLN3DJA>
.
|
#Import the game!
import sys
sys.path.append('game_engines')
from q_tic_tac_toe import Board
ModuleNotFoundError Traceback (most recent call last)
in
2 import sys
3 sys.path.append('game_engines')
----> 4 from q_tic_tac_toe import Board
ModuleNotFoundError: No module named 'q_tic_tac_toe'
The text was updated successfully, but these errors were encountered: