Reputation: 1001
After installing unity hub, I had Unity 2017 already installed. Then I downloaded Unity 2019 from the Unity Hub without any extra build support.
Then I made a new project in unity 2019 from the hub. The project does not start. When I open it manually I get the following error message:
Project does not exist: /Users/user/Desktop
I tried restarting my laptop but the same problem occurs.
What I notice when I make a new project from unity hub of unity 2019 that unity launches in the dock for one millisecond then it disappears. Note: I am using a mac
What I think is that unity is opening then it closes instantly.
Upvotes: 2
Views: 14811
Reputation: 31
I have the same issue, Whenever I tried with creating any new projects from Unity Hub It is showing me error of Path, Once I tried to Run unity editor separately and create a new project from the editor, My Problem Solved.
Upvotes: 0
Reputation: 362
If you are using a VPN, sometimes that may be the cause of the problem, try turning it off
Upvotes: 0
Reputation: 43
I reinstalled Unity hub and it worked for me. Apparently I did not have the latest version, so I uninstalled the version I had and reinstalled the latest version.
Upvotes: 0
Reputation: 111
This causes when you have multiple instances of unity installed on your system. Try to remove old version and then try to open your project, make sure you have completed removed your old version of unity.
If this does not work then make an empty project with same name and copy the old projects asset folder and replace it in a new project.
Upvotes: 2
Reputation: 66
Project does not exist: /Users/user/Desktop
Looks like somehow Unity Hub is trying to open Desktop as a project. It looks like a bug.
You can try to press Add button and select project path carefully or to workaround this issue, the -projectPath command line argument could work, in theory it should bypass the Hub. Navigate to Unity's directory and launch it like this: ./Unity -projectPath <path_to_project>
You should send a bug report to Unity.
Upvotes: 1