Installing Unity3d on Ubuntu 16.04
up vote
12
down vote
favorite
According to this blog post I should be able to install the .deb version of the Unity Editor for Ubuntu. I have the recommended system requirements. But when I try to install the .deb file using the sudo dpkg -i mydebfile.deb
I get the following errors:
Selecting previously unselected package unity-editor.
(Reading database ... 175283 files and directories currently installed.)
Preparing to unpack unity-editor-5.3.4f1 20160503_amd64.deb ...
Unpacking unity-editor (5.3.4f1) ...
dpkg: dependency problems prevent configuration of unity-editor:
unity-editor depends on lib32gcc1 (>= 1:4.1.1); however:
Package lib32gcc1 is not installed.
unity-editor depends on lib32stdc++6 (>= 4.6); however:
Package lib32stdc++6 is not installed.
unity-editor depends on libc6-i386 (>= 2.15); however:
Package libc6-i386 is not installed.
unity-editor depends on libpq5; however:
Package libpq5 is not installed.
unity-editor depends on npm; however:
Package npm is not installed.
dpkg: error processing package unity-editor (--install):
dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.13.3-6ubuntu3) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160415-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Errors were encountered while processing:
unity-editor
Has anybody successfully installed the Unity3d on Ubuntu 16.04 yet? Please help if you can.
EDIT: I've been asked if the question How do I install a .deb file via the command line? has solved my problem. The answer is: No, it hasn't. The answers in that question might help one learn how to fix broken dependencies using sudo apt-get -f install
but that didn't solve my problem. I had to install each of the missing packages one by one (see comments below). So, I think people coming here for the same problem won't be able to know that they have to install the packages by hand if the question is marked as a duplicate.
16.04
add a comment |
up vote
12
down vote
favorite
According to this blog post I should be able to install the .deb version of the Unity Editor for Ubuntu. I have the recommended system requirements. But when I try to install the .deb file using the sudo dpkg -i mydebfile.deb
I get the following errors:
Selecting previously unselected package unity-editor.
(Reading database ... 175283 files and directories currently installed.)
Preparing to unpack unity-editor-5.3.4f1 20160503_amd64.deb ...
Unpacking unity-editor (5.3.4f1) ...
dpkg: dependency problems prevent configuration of unity-editor:
unity-editor depends on lib32gcc1 (>= 1:4.1.1); however:
Package lib32gcc1 is not installed.
unity-editor depends on lib32stdc++6 (>= 4.6); however:
Package lib32stdc++6 is not installed.
unity-editor depends on libc6-i386 (>= 2.15); however:
Package libc6-i386 is not installed.
unity-editor depends on libpq5; however:
Package libpq5 is not installed.
unity-editor depends on npm; however:
Package npm is not installed.
dpkg: error processing package unity-editor (--install):
dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.13.3-6ubuntu3) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160415-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Errors were encountered while processing:
unity-editor
Has anybody successfully installed the Unity3d on Ubuntu 16.04 yet? Please help if you can.
EDIT: I've been asked if the question How do I install a .deb file via the command line? has solved my problem. The answer is: No, it hasn't. The answers in that question might help one learn how to fix broken dependencies using sudo apt-get -f install
but that didn't solve my problem. I had to install each of the missing packages one by one (see comments below). So, I think people coming here for the same problem won't be able to know that they have to install the packages by hand if the question is marked as a duplicate.
16.04
5
Possible duplicate of How do I install a .deb file via the command line?
– David Foerster
Sep 18 '16 at 7:46
1
It's specific to Unity so, not quite a dupe, but I see your point! The answers on this thread are now out of date (no more .deb file), see my answer for instructions.
– GrayedFox
Oct 10 at 15:54
1
Why is this question being flagged over and over again as a duplicate question? Please read the last paragraph of the question before reviewing it.
– karel
Oct 16 at 5:35
add a comment |
up vote
12
down vote
favorite
up vote
12
down vote
favorite
According to this blog post I should be able to install the .deb version of the Unity Editor for Ubuntu. I have the recommended system requirements. But when I try to install the .deb file using the sudo dpkg -i mydebfile.deb
I get the following errors:
Selecting previously unselected package unity-editor.
(Reading database ... 175283 files and directories currently installed.)
Preparing to unpack unity-editor-5.3.4f1 20160503_amd64.deb ...
Unpacking unity-editor (5.3.4f1) ...
dpkg: dependency problems prevent configuration of unity-editor:
unity-editor depends on lib32gcc1 (>= 1:4.1.1); however:
Package lib32gcc1 is not installed.
unity-editor depends on lib32stdc++6 (>= 4.6); however:
Package lib32stdc++6 is not installed.
unity-editor depends on libc6-i386 (>= 2.15); however:
Package libc6-i386 is not installed.
unity-editor depends on libpq5; however:
Package libpq5 is not installed.
unity-editor depends on npm; however:
Package npm is not installed.
dpkg: error processing package unity-editor (--install):
dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.13.3-6ubuntu3) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160415-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Errors were encountered while processing:
unity-editor
Has anybody successfully installed the Unity3d on Ubuntu 16.04 yet? Please help if you can.
EDIT: I've been asked if the question How do I install a .deb file via the command line? has solved my problem. The answer is: No, it hasn't. The answers in that question might help one learn how to fix broken dependencies using sudo apt-get -f install
but that didn't solve my problem. I had to install each of the missing packages one by one (see comments below). So, I think people coming here for the same problem won't be able to know that they have to install the packages by hand if the question is marked as a duplicate.
16.04
According to this blog post I should be able to install the .deb version of the Unity Editor for Ubuntu. I have the recommended system requirements. But when I try to install the .deb file using the sudo dpkg -i mydebfile.deb
I get the following errors:
Selecting previously unselected package unity-editor.
(Reading database ... 175283 files and directories currently installed.)
Preparing to unpack unity-editor-5.3.4f1 20160503_amd64.deb ...
Unpacking unity-editor (5.3.4f1) ...
dpkg: dependency problems prevent configuration of unity-editor:
unity-editor depends on lib32gcc1 (>= 1:4.1.1); however:
Package lib32gcc1 is not installed.
unity-editor depends on lib32stdc++6 (>= 4.6); however:
Package lib32stdc++6 is not installed.
unity-editor depends on libc6-i386 (>= 2.15); however:
Package libc6-i386 is not installed.
unity-editor depends on libpq5; however:
Package libpq5 is not installed.
unity-editor depends on npm; however:
Package npm is not installed.
dpkg: error processing package unity-editor (--install):
dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.13.3-6ubuntu3) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160415-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Errors were encountered while processing:
unity-editor
Has anybody successfully installed the Unity3d on Ubuntu 16.04 yet? Please help if you can.
EDIT: I've been asked if the question How do I install a .deb file via the command line? has solved my problem. The answer is: No, it hasn't. The answers in that question might help one learn how to fix broken dependencies using sudo apt-get -f install
but that didn't solve my problem. I had to install each of the missing packages one by one (see comments below). So, I think people coming here for the same problem won't be able to know that they have to install the packages by hand if the question is marked as a duplicate.
16.04
16.04
edited Apr 13 '17 at 12:24
Community♦
1
1
asked May 18 '16 at 20:49
Eisenheim
2442311
2442311
5
Possible duplicate of How do I install a .deb file via the command line?
– David Foerster
Sep 18 '16 at 7:46
1
It's specific to Unity so, not quite a dupe, but I see your point! The answers on this thread are now out of date (no more .deb file), see my answer for instructions.
– GrayedFox
Oct 10 at 15:54
1
Why is this question being flagged over and over again as a duplicate question? Please read the last paragraph of the question before reviewing it.
– karel
Oct 16 at 5:35
add a comment |
5
Possible duplicate of How do I install a .deb file via the command line?
– David Foerster
Sep 18 '16 at 7:46
1
It's specific to Unity so, not quite a dupe, but I see your point! The answers on this thread are now out of date (no more .deb file), see my answer for instructions.
– GrayedFox
Oct 10 at 15:54
1
Why is this question being flagged over and over again as a duplicate question? Please read the last paragraph of the question before reviewing it.
– karel
Oct 16 at 5:35
5
5
Possible duplicate of How do I install a .deb file via the command line?
– David Foerster
Sep 18 '16 at 7:46
Possible duplicate of How do I install a .deb file via the command line?
– David Foerster
Sep 18 '16 at 7:46
1
1
It's specific to Unity so, not quite a dupe, but I see your point! The answers on this thread are now out of date (no more .deb file), see my answer for instructions.
– GrayedFox
Oct 10 at 15:54
It's specific to Unity so, not quite a dupe, but I see your point! The answers on this thread are now out of date (no more .deb file), see my answer for instructions.
– GrayedFox
Oct 10 at 15:54
1
1
Why is this question being flagged over and over again as a duplicate question? Please read the last paragraph of the question before reviewing it.
– karel
Oct 16 at 5:35
Why is this question being flagged over and over again as a duplicate question? Please read the last paragraph of the question before reviewing it.
– karel
Oct 16 at 5:35
add a comment |
5 Answers
5
active
oldest
votes
up vote
4
down vote
accepted
The dpkg -i
command does not resolve dependencies and pull them from apt repositories. You need to install the package using the Ubuntu Software application, or you will need to apt-get install
the listed dependencies by hand in a terminal, so that they will be installed and the dependencies for the unity-editor.deb
file satisfied.
6
I believe that runningsudo apt-get install -f
after installing a DEB will install the dependencies for it.
– TheWanderer
May 18 '16 at 20:57
@dobey installing each one of the dependencies by hand sorted out the problem.
– Eisenheim
May 18 '16 at 21:06
@Zacharee1 I concur with you.
– Eisenheim
May 18 '16 at 21:07
1
@dobey Why not pasting here command which installs all Unity3D dependencies? I think that it might be useful for others?
– matandked
Feb 2 '17 at 20:10
add a comment |
up vote
6
down vote
Download
Unity is providing official support for Ubuntu
You can always get the latest releases of Unity3D
:
Unity on Linux: Release Notes and Known Issues
scroll down the page
Install
- How do I install a .deb file via the command line?
New way of installing Unity. Same link. No file .deb anymore. You'll get an installation assistant file with extension .0b1 this time. Make it executable 'chmod +x name.0b1' and run it.
– UserK
Jun 12 at 22:10
add a comment |
up vote
1
down vote
Use gdebi
! install this gdebi on Ubuntu software, and open file manaager, go to Download, and open terminal on Download. and run:
1.gdebi [.deb file you downloaded.deb(full name)]
and wait...
type
y
when you see[y/n]
.try to open Unity editor!
But there is one error I found: If you login, it always shows 'Service not available, please try again later.'
Don't try to wait. it ALWAYS shows me.
add a comment |
up vote
0
down vote
The answers on this page are now all slightly out of date. Unity are no longer providing a .deb
file. It took me a minute, but go to this thread:
https://forum.unity.com/threads/unity-on-linux-release-notes-and-known-issues.350256/
And navigate to the last page. Click on the link in the very last post (as instructed) and download the executable. After downloading you will need to add execution rights, either do this via the GUI (right click, go to permissions, and check "Allow executing file as program") or from your command line simply run
chmod +x unity-setup-filename
Now you can open the new graphical assisted installer!
add a comment |
up vote
0
down vote
To summarize this post
INSTALL UNITY3D IN UBUNTU 18.04
Find the latest Unity3D on Linux from HERE
sudo apt install -y libgconf-*
wget https://beta.unity3d.com/download/<checksum>/UnitySetup-YYYY.X.ZZZ
chmod +x UnitySetup-YYYY.X.ZZZ
./UnitySetup-YYYY.X.ZZZ
ln -s Unity3D-YYYY.X.ZZZ/Editor/Unity /usr/bin/unity3d
New contributor
add a comment |
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
The dpkg -i
command does not resolve dependencies and pull them from apt repositories. You need to install the package using the Ubuntu Software application, or you will need to apt-get install
the listed dependencies by hand in a terminal, so that they will be installed and the dependencies for the unity-editor.deb
file satisfied.
6
I believe that runningsudo apt-get install -f
after installing a DEB will install the dependencies for it.
– TheWanderer
May 18 '16 at 20:57
@dobey installing each one of the dependencies by hand sorted out the problem.
– Eisenheim
May 18 '16 at 21:06
@Zacharee1 I concur with you.
– Eisenheim
May 18 '16 at 21:07
1
@dobey Why not pasting here command which installs all Unity3D dependencies? I think that it might be useful for others?
– matandked
Feb 2 '17 at 20:10
add a comment |
up vote
4
down vote
accepted
The dpkg -i
command does not resolve dependencies and pull them from apt repositories. You need to install the package using the Ubuntu Software application, or you will need to apt-get install
the listed dependencies by hand in a terminal, so that they will be installed and the dependencies for the unity-editor.deb
file satisfied.
6
I believe that runningsudo apt-get install -f
after installing a DEB will install the dependencies for it.
– TheWanderer
May 18 '16 at 20:57
@dobey installing each one of the dependencies by hand sorted out the problem.
– Eisenheim
May 18 '16 at 21:06
@Zacharee1 I concur with you.
– Eisenheim
May 18 '16 at 21:07
1
@dobey Why not pasting here command which installs all Unity3D dependencies? I think that it might be useful for others?
– matandked
Feb 2 '17 at 20:10
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
The dpkg -i
command does not resolve dependencies and pull them from apt repositories. You need to install the package using the Ubuntu Software application, or you will need to apt-get install
the listed dependencies by hand in a terminal, so that they will be installed and the dependencies for the unity-editor.deb
file satisfied.
The dpkg -i
command does not resolve dependencies and pull them from apt repositories. You need to install the package using the Ubuntu Software application, or you will need to apt-get install
the listed dependencies by hand in a terminal, so that they will be installed and the dependencies for the unity-editor.deb
file satisfied.
answered May 18 '16 at 20:54
dobey
32.3k33585
32.3k33585
6
I believe that runningsudo apt-get install -f
after installing a DEB will install the dependencies for it.
– TheWanderer
May 18 '16 at 20:57
@dobey installing each one of the dependencies by hand sorted out the problem.
– Eisenheim
May 18 '16 at 21:06
@Zacharee1 I concur with you.
– Eisenheim
May 18 '16 at 21:07
1
@dobey Why not pasting here command which installs all Unity3D dependencies? I think that it might be useful for others?
– matandked
Feb 2 '17 at 20:10
add a comment |
6
I believe that runningsudo apt-get install -f
after installing a DEB will install the dependencies for it.
– TheWanderer
May 18 '16 at 20:57
@dobey installing each one of the dependencies by hand sorted out the problem.
– Eisenheim
May 18 '16 at 21:06
@Zacharee1 I concur with you.
– Eisenheim
May 18 '16 at 21:07
1
@dobey Why not pasting here command which installs all Unity3D dependencies? I think that it might be useful for others?
– matandked
Feb 2 '17 at 20:10
6
6
I believe that running
sudo apt-get install -f
after installing a DEB will install the dependencies for it.– TheWanderer
May 18 '16 at 20:57
I believe that running
sudo apt-get install -f
after installing a DEB will install the dependencies for it.– TheWanderer
May 18 '16 at 20:57
@dobey installing each one of the dependencies by hand sorted out the problem.
– Eisenheim
May 18 '16 at 21:06
@dobey installing each one of the dependencies by hand sorted out the problem.
– Eisenheim
May 18 '16 at 21:06
@Zacharee1 I concur with you.
– Eisenheim
May 18 '16 at 21:07
@Zacharee1 I concur with you.
– Eisenheim
May 18 '16 at 21:07
1
1
@dobey Why not pasting here command which installs all Unity3D dependencies? I think that it might be useful for others?
– matandked
Feb 2 '17 at 20:10
@dobey Why not pasting here command which installs all Unity3D dependencies? I think that it might be useful for others?
– matandked
Feb 2 '17 at 20:10
add a comment |
up vote
6
down vote
Download
Unity is providing official support for Ubuntu
You can always get the latest releases of Unity3D
:
Unity on Linux: Release Notes and Known Issues
scroll down the page
Install
- How do I install a .deb file via the command line?
New way of installing Unity. Same link. No file .deb anymore. You'll get an installation assistant file with extension .0b1 this time. Make it executable 'chmod +x name.0b1' and run it.
– UserK
Jun 12 at 22:10
add a comment |
up vote
6
down vote
Download
Unity is providing official support for Ubuntu
You can always get the latest releases of Unity3D
:
Unity on Linux: Release Notes and Known Issues
scroll down the page
Install
- How do I install a .deb file via the command line?
New way of installing Unity. Same link. No file .deb anymore. You'll get an installation assistant file with extension .0b1 this time. Make it executable 'chmod +x name.0b1' and run it.
– UserK
Jun 12 at 22:10
add a comment |
up vote
6
down vote
up vote
6
down vote
Download
Unity is providing official support for Ubuntu
You can always get the latest releases of Unity3D
:
Unity on Linux: Release Notes and Known Issues
scroll down the page
Install
- How do I install a .deb file via the command line?
Download
Unity is providing official support for Ubuntu
You can always get the latest releases of Unity3D
:
Unity on Linux: Release Notes and Known Issues
scroll down the page
Install
- How do I install a .deb file via the command line?
edited Jun 23 at 12:43
answered Oct 24 '16 at 13:01
Benny
3,06411026
3,06411026
New way of installing Unity. Same link. No file .deb anymore. You'll get an installation assistant file with extension .0b1 this time. Make it executable 'chmod +x name.0b1' and run it.
– UserK
Jun 12 at 22:10
add a comment |
New way of installing Unity. Same link. No file .deb anymore. You'll get an installation assistant file with extension .0b1 this time. Make it executable 'chmod +x name.0b1' and run it.
– UserK
Jun 12 at 22:10
New way of installing Unity. Same link. No file .deb anymore. You'll get an installation assistant file with extension .0b1 this time. Make it executable 'chmod +x name.0b1' and run it.
– UserK
Jun 12 at 22:10
New way of installing Unity. Same link. No file .deb anymore. You'll get an installation assistant file with extension .0b1 this time. Make it executable 'chmod +x name.0b1' and run it.
– UserK
Jun 12 at 22:10
add a comment |
up vote
1
down vote
Use gdebi
! install this gdebi on Ubuntu software, and open file manaager, go to Download, and open terminal on Download. and run:
1.gdebi [.deb file you downloaded.deb(full name)]
and wait...
type
y
when you see[y/n]
.try to open Unity editor!
But there is one error I found: If you login, it always shows 'Service not available, please try again later.'
Don't try to wait. it ALWAYS shows me.
add a comment |
up vote
1
down vote
Use gdebi
! install this gdebi on Ubuntu software, and open file manaager, go to Download, and open terminal on Download. and run:
1.gdebi [.deb file you downloaded.deb(full name)]
and wait...
type
y
when you see[y/n]
.try to open Unity editor!
But there is one error I found: If you login, it always shows 'Service not available, please try again later.'
Don't try to wait. it ALWAYS shows me.
add a comment |
up vote
1
down vote
up vote
1
down vote
Use gdebi
! install this gdebi on Ubuntu software, and open file manaager, go to Download, and open terminal on Download. and run:
1.gdebi [.deb file you downloaded.deb(full name)]
and wait...
type
y
when you see[y/n]
.try to open Unity editor!
But there is one error I found: If you login, it always shows 'Service not available, please try again later.'
Don't try to wait. it ALWAYS shows me.
Use gdebi
! install this gdebi on Ubuntu software, and open file manaager, go to Download, and open terminal on Download. and run:
1.gdebi [.deb file you downloaded.deb(full name)]
and wait...
type
y
when you see[y/n]
.try to open Unity editor!
But there is one error I found: If you login, it always shows 'Service not available, please try again later.'
Don't try to wait. it ALWAYS shows me.
answered Sep 18 '16 at 4:13
CM7냥이 버섯 TV
111
111
add a comment |
add a comment |
up vote
0
down vote
The answers on this page are now all slightly out of date. Unity are no longer providing a .deb
file. It took me a minute, but go to this thread:
https://forum.unity.com/threads/unity-on-linux-release-notes-and-known-issues.350256/
And navigate to the last page. Click on the link in the very last post (as instructed) and download the executable. After downloading you will need to add execution rights, either do this via the GUI (right click, go to permissions, and check "Allow executing file as program") or from your command line simply run
chmod +x unity-setup-filename
Now you can open the new graphical assisted installer!
add a comment |
up vote
0
down vote
The answers on this page are now all slightly out of date. Unity are no longer providing a .deb
file. It took me a minute, but go to this thread:
https://forum.unity.com/threads/unity-on-linux-release-notes-and-known-issues.350256/
And navigate to the last page. Click on the link in the very last post (as instructed) and download the executable. After downloading you will need to add execution rights, either do this via the GUI (right click, go to permissions, and check "Allow executing file as program") or from your command line simply run
chmod +x unity-setup-filename
Now you can open the new graphical assisted installer!
add a comment |
up vote
0
down vote
up vote
0
down vote
The answers on this page are now all slightly out of date. Unity are no longer providing a .deb
file. It took me a minute, but go to this thread:
https://forum.unity.com/threads/unity-on-linux-release-notes-and-known-issues.350256/
And navigate to the last page. Click on the link in the very last post (as instructed) and download the executable. After downloading you will need to add execution rights, either do this via the GUI (right click, go to permissions, and check "Allow executing file as program") or from your command line simply run
chmod +x unity-setup-filename
Now you can open the new graphical assisted installer!
The answers on this page are now all slightly out of date. Unity are no longer providing a .deb
file. It took me a minute, but go to this thread:
https://forum.unity.com/threads/unity-on-linux-release-notes-and-known-issues.350256/
And navigate to the last page. Click on the link in the very last post (as instructed) and download the executable. After downloading you will need to add execution rights, either do this via the GUI (right click, go to permissions, and check "Allow executing file as program") or from your command line simply run
chmod +x unity-setup-filename
Now you can open the new graphical assisted installer!
answered Oct 10 at 15:52
GrayedFox
1167
1167
add a comment |
add a comment |
up vote
0
down vote
To summarize this post
INSTALL UNITY3D IN UBUNTU 18.04
Find the latest Unity3D on Linux from HERE
sudo apt install -y libgconf-*
wget https://beta.unity3d.com/download/<checksum>/UnitySetup-YYYY.X.ZZZ
chmod +x UnitySetup-YYYY.X.ZZZ
./UnitySetup-YYYY.X.ZZZ
ln -s Unity3D-YYYY.X.ZZZ/Editor/Unity /usr/bin/unity3d
New contributor
add a comment |
up vote
0
down vote
To summarize this post
INSTALL UNITY3D IN UBUNTU 18.04
Find the latest Unity3D on Linux from HERE
sudo apt install -y libgconf-*
wget https://beta.unity3d.com/download/<checksum>/UnitySetup-YYYY.X.ZZZ
chmod +x UnitySetup-YYYY.X.ZZZ
./UnitySetup-YYYY.X.ZZZ
ln -s Unity3D-YYYY.X.ZZZ/Editor/Unity /usr/bin/unity3d
New contributor
add a comment |
up vote
0
down vote
up vote
0
down vote
To summarize this post
INSTALL UNITY3D IN UBUNTU 18.04
Find the latest Unity3D on Linux from HERE
sudo apt install -y libgconf-*
wget https://beta.unity3d.com/download/<checksum>/UnitySetup-YYYY.X.ZZZ
chmod +x UnitySetup-YYYY.X.ZZZ
./UnitySetup-YYYY.X.ZZZ
ln -s Unity3D-YYYY.X.ZZZ/Editor/Unity /usr/bin/unity3d
New contributor
To summarize this post
INSTALL UNITY3D IN UBUNTU 18.04
Find the latest Unity3D on Linux from HERE
sudo apt install -y libgconf-*
wget https://beta.unity3d.com/download/<checksum>/UnitySetup-YYYY.X.ZZZ
chmod +x UnitySetup-YYYY.X.ZZZ
./UnitySetup-YYYY.X.ZZZ
ln -s Unity3D-YYYY.X.ZZZ/Editor/Unity /usr/bin/unity3d
New contributor
edited Nov 15 at 21:14
New contributor
answered Nov 15 at 20:34
jakebrinkmann
1013
1013
New contributor
New contributor
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f774401%2finstalling-unity3d-on-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
5
Possible duplicate of How do I install a .deb file via the command line?
– David Foerster
Sep 18 '16 at 7:46
1
It's specific to Unity so, not quite a dupe, but I see your point! The answers on this thread are now out of date (no more .deb file), see my answer for instructions.
– GrayedFox
Oct 10 at 15:54
1
Why is this question being flagged over and over again as a duplicate question? Please read the last paragraph of the question before reviewing it.
– karel
Oct 16 at 5:35