Create new app failed with error Command "python setup.py egg_info" failed with error code 1

yah i also have the some problem when i make new app…
after make new app, i open the setup.py inside my app folder. i change this line

install_requires = f.read().strip().split(’
')

to

install_requires = f.read().strip().split(‘\n’)

and i copy paste and run this line at my cmd
./env/bin/pip install -q -e ./apps/custom_app --no-cache-dir

then the apps works normally for me…

i thought the \n at .split(“\n”) treated as enter when make new app

1 Like