Pokemon-Terminal
Pokemon-Terminal copied to clipboard
can't open file `pokemon`
i'm installed brew python3 current my python3 version is 3.7
but, get this error
~ python3 pokemon grawlithe
(null): can't open file 'pokemon': [Errno 2] No such file or directory
please help me.. I like pokemon!!
Just run $ pokemon growlithe
without specifying python
If you did a per user pip install then you may need to update your path as per https://github.com/LazoCoder/Pokemon-Terminal#pip-per-user
@jimmyorourke I do that command line.
~ pokemon grawlithe
env: python3.6: No such file or directory
so I used python3 before command line
Ah, I think the python version is probably pinned to 3.6
Pip installation should update the shebang
Well then running the pip install
command again with --force-reinstall
should fix it @KimHunJin
for python3.6: No such file or directory
error, you could use the python version in your computer instead of python3.6 that specified by Pokemon-Terminal, the steps:
- $ vim `which pokemon`
- edit file, change
python3.6
topython3
- #!/usr/bin/env python3.6
+ #!/usr/bin/env python3
Make sure python3 points to at least a python 3.6 version or else you'll encounter syntax errors related to f-strings