0

I am trying to create an executable through pyinstall that requires the version 1.2.2 of the module playsound, how can I make it so it installs that version, and not the newest one, when creating the executable?

  • I think [this](https://stackoverflow.com/questions/5226311/installing-specific-package-version-with-pip) and also [here](https://stackoverflow.com/questions/63494904/how-to-specify-python-version-and-library-versions-for-pyinstaller-executable) should help you with what you want when looking for a specific version of a module. – Rory May 04 '22 at 21:05
  • 1
    I think Pyinstaller get version which you have installed - so you can reinstall expected version `pip install -U playsound==1.2.2` or you should use `venv` to create environment in which you will install `1.2.2` and run Pyinstaller. – furas May 04 '22 at 23:35

0 Answers0