serfend / pydumpck

a multi-threads tool for decompile exe,elf,pyz,pyc packed by python which is base on pycdc and uncompyle6.
https://pypi.org/project/pydumpck/
289 stars 34 forks source link

i have installed pydumpck but get "'pydumpck' is not recognized as an internal or external command, operable program or batch file." #35

Open BartWeb3dev opened 1 year ago

BartWeb3dev commented 1 year ago

HI i dont know how to solve that issue. Can somone help? test

barealek commented 1 year ago

It's important to make sure that your PATH environment variable contains Pythons modules folder, however this issue is a really common one. What helped for me was downloading it in a virtual Python environment and activating the environment. Here's how you can do that:

Make a new environment under the venv folder: python -m venv venv

Activate the environment in the shell venv\Scripts\activate.exe

And last, install pydumpck in the virtual environment pip install pydumpck

If you still get the same error, try running refreshenv to refresh your environment variables.