For me following steps worked:
- Quit
Xcode. - Open
Terminal. - Typed Command
xattr -rc /Users/manabkumarmal/Desktop/Projects/MyProjectHome - Open Xcode.
- Cleaned.
- Now worked and No Error.
Discover and enjoy a wide range of IT solutions designed to make your digital experience smoother, faster, and more efficient. From software tips to troubleshooting guides, find everything you need in a place. Stay updated, stay secure, and enhance your tech skills with reliable, user-friendly information and resources.
Xcode.Terminal.xattr -rc /Users/manabkumarmal/Desktop/Projects/MyProjectHomeRun this:netstat -plant|grep ":3306"|grep "LISTEN"If it comes back with something like this:tcp 0 127.0.0.1:3306 0.0.0.0:* LISTEN 1881/mysqlThis means that it's bound to local only. To fix this, follow the appropriate guide below for your distro.If it shows something like this:tcp 0 0.0.0.0:3306 0.0.0.0:* LISTEN 1881/mysqlThis means it's a firewall issue. Follow the Firewall guide below for your distro.
AddPython 3.5 to PATH and then click Install Now.python --version
pip¶pip to install Python packages from the command line.Installing withget-pip.py instructions.virtualenv and virtualenvwrapper¶pip install virtualenvwrapper-win
mkvirtualenv myproject
workon myproject
pip within your virtual environment.pip install django
django-admin --version in the command prompt.django-admin only displays the help text no matter what arguments it is given, there is probably a problem with the file association in Windows. Check if there is more than one environment variable set for running Python scripts in PATH. This usually occurs when there is more than one Python version installed.pipinstall django. Set the environment variables for proxy configuration in the command prompt as follows:set http_proxy=http://username:password@proxyserver:proxyport
set https_proxy=https://username:password@proxyserver:proxyport