Updated Readme [Skip CI]

This commit is contained in:
Manuel Cortez 2020-07-19 11:41:14 -05:00
parent ff8a7492e8
commit ca6e6b23bf

View File

@ -12,26 +12,14 @@ MusicDL is an app for downloading music directly from services like Youtube, zay
See the requirements.txt, located in the root of this repository. Additionally, take into account the following. See the requirements.txt, located in the root of this repository. Additionally, take into account the following.
* In case you want to create your own distributable version with Python 2, you'll need py2exe.
## running ## running
Run the file main.py, located in the src directory. Run the file main.py, located in the src directory.
## Building ## Building
### Python 3 I have provided a setup.py file for cx_freeze, so you should be able to do something like:
I have provided a main.spec file for pyinstaller, so you should be able to do something like: > python setup.py build
> C:\python3\scripts\pyinstaller.exe main.spec
And start building. Check the dist folder for results. And start building. Check the dist folder for results.
### Python 2
If you are using Python 2.x and want to build MusicDL, there is a setup.py file made for pyinstaller aswell. Just run it the usual way:
> C:\python2\python.exe setup.py py2exe
And You will get a distributable version of MusicDL.