How to install TexStudio on Ubuntu 16.04?
up vote
15
down vote
favorite
I found this page which suggests to install TexStudio with the following commands:
sudo apt-get update
sudo apt-get install texstudio
Is it enough? Don't I need a package manager like MiKTeX
in Windows?
Thanks,
16.04 software-installation latex
add a comment |
up vote
15
down vote
favorite
I found this page which suggests to install TexStudio with the following commands:
sudo apt-get update
sudo apt-get install texstudio
Is it enough? Don't I need a package manager like MiKTeX
in Windows?
Thanks,
16.04 software-installation latex
Withapt-get
you are using the package manager.
– Hannu
Nov 13 '16 at 17:00
2
I did it from Ubuntu Software center, it seems it lack a few things such as the top banner ... Do you have any idea ?
– ThePassenger
Jul 31 '17 at 12:20
add a comment |
up vote
15
down vote
favorite
up vote
15
down vote
favorite
I found this page which suggests to install TexStudio with the following commands:
sudo apt-get update
sudo apt-get install texstudio
Is it enough? Don't I need a package manager like MiKTeX
in Windows?
Thanks,
16.04 software-installation latex
I found this page which suggests to install TexStudio with the following commands:
sudo apt-get update
sudo apt-get install texstudio
Is it enough? Don't I need a package manager like MiKTeX
in Windows?
Thanks,
16.04 software-installation latex
16.04 software-installation latex
edited Feb 11 '17 at 15:14
asked Nov 13 '16 at 14:39
jeff
4282614
4282614
Withapt-get
you are using the package manager.
– Hannu
Nov 13 '16 at 17:00
2
I did it from Ubuntu Software center, it seems it lack a few things such as the top banner ... Do you have any idea ?
– ThePassenger
Jul 31 '17 at 12:20
add a comment |
Withapt-get
you are using the package manager.
– Hannu
Nov 13 '16 at 17:00
2
I did it from Ubuntu Software center, it seems it lack a few things such as the top banner ... Do you have any idea ?
– ThePassenger
Jul 31 '17 at 12:20
With
apt-get
you are using the package manager.– Hannu
Nov 13 '16 at 17:00
With
apt-get
you are using the package manager.– Hannu
Nov 13 '16 at 17:00
2
2
I did it from Ubuntu Software center, it seems it lack a few things such as the top banner ... Do you have any idea ?
– ThePassenger
Jul 31 '17 at 12:20
I did it from Ubuntu Software center, it seems it lack a few things such as the top banner ... Do you have any idea ?
– ThePassenger
Jul 31 '17 at 12:20
add a comment |
6 Answers
6
active
oldest
votes
up vote
14
down vote
accepted
When I installed Texmaker then that was all I needed to do. Any dependencies should be automatically installed when you use apt-get. I remember being surprised how much more work I had to do to install it on Windows.
1
You're right, when I tried the second command, it told me it needed 610MB disk space, so yes, it installs all the dependencies with it apparently.
– jeff
Nov 13 '16 at 14:46
add a comment |
up vote
9
down vote
Yes you have to install texlive-full
, it is around 3.5 GB
. To install it, run the following command in the terminal:
sudo apt install texlive-full
Then you can install texstudio
or texmaker
.
Source here
1
+1. Funny, this is actually the only correct answer and it was downvoted :). Though one can installtexstudio
alone, it will be pretty useless because one can't compile real latex documents with it; instead of installingtexlive-full
one can installtexlive
and additional packages, such astexlive-latex-extra
(given one knows what he needs).
– kludg
Dec 24 '17 at 17:48
add a comment |
up vote
3
down vote
It is also possible to install it via the Ubuntu Software program, which might be easier for people that are new to Ubuntu.
- Open Ubuntu Software
- Search TeXstudio
- Press install and wait
add a comment |
up vote
2
down vote
When installing texstudio, you need to install texlive first, since texstudio is solely the "IDE"
While this may solve the issue, I would still recommend including instructions on how to installtexlive
withtexstudio
so that this will be a more useful answer for those who need it.
– Owen Hines
Jan 5 '17 at 16:44
add a comment |
up vote
0
down vote
Texstudio is merely an IDE.
To get the full advantage of installing latex, you will have to use the command:
sudo apt install texlive-full // for ubuntu 16.04 and above
However, the above command can most often be a temptation. It installs so many extra (language) packages, most of which will be unnessary for your purpose. Therefore, it is recommended to use the command without the "full":
sudo apt install texlive // for ubuntu 16.04 and above
Hope this helps!
add a comment |
up vote
0
down vote
BRIEF
I've seen 2 types of answers here. Both answers are actually OK. You could just do as you say or install first texlive-full
.
- Option 1:
sudo apt-get install texstudio
will have texstudio using
texlive-base
. - Option 2:
sudo apt install texlive-base
+sudo apt-get install texstudio
will have texstudio usingtexlive-full
Both will have texstudio up and running and for most cases, the first option will be enough to compile. Option 2 will install every package so you'll never have to install any extra package when compiling.
I guess if you don't have space issues the second option is better. However, I am using Ubuntu on a live persistent USB drive without much space so I go for option 1.
You could check packages differences running apt-cache search texlive
(you'll see that there are actually more than 2 options).
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f848949%2fhow-to-install-texstudio-on-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
14
down vote
accepted
When I installed Texmaker then that was all I needed to do. Any dependencies should be automatically installed when you use apt-get. I remember being surprised how much more work I had to do to install it on Windows.
1
You're right, when I tried the second command, it told me it needed 610MB disk space, so yes, it installs all the dependencies with it apparently.
– jeff
Nov 13 '16 at 14:46
add a comment |
up vote
14
down vote
accepted
When I installed Texmaker then that was all I needed to do. Any dependencies should be automatically installed when you use apt-get. I remember being surprised how much more work I had to do to install it on Windows.
1
You're right, when I tried the second command, it told me it needed 610MB disk space, so yes, it installs all the dependencies with it apparently.
– jeff
Nov 13 '16 at 14:46
add a comment |
up vote
14
down vote
accepted
up vote
14
down vote
accepted
When I installed Texmaker then that was all I needed to do. Any dependencies should be automatically installed when you use apt-get. I remember being surprised how much more work I had to do to install it on Windows.
When I installed Texmaker then that was all I needed to do. Any dependencies should be automatically installed when you use apt-get. I remember being surprised how much more work I had to do to install it on Windows.
answered Nov 13 '16 at 14:45
Johan Abdullah Holm
15613
15613
1
You're right, when I tried the second command, it told me it needed 610MB disk space, so yes, it installs all the dependencies with it apparently.
– jeff
Nov 13 '16 at 14:46
add a comment |
1
You're right, when I tried the second command, it told me it needed 610MB disk space, so yes, it installs all the dependencies with it apparently.
– jeff
Nov 13 '16 at 14:46
1
1
You're right, when I tried the second command, it told me it needed 610MB disk space, so yes, it installs all the dependencies with it apparently.
– jeff
Nov 13 '16 at 14:46
You're right, when I tried the second command, it told me it needed 610MB disk space, so yes, it installs all the dependencies with it apparently.
– jeff
Nov 13 '16 at 14:46
add a comment |
up vote
9
down vote
Yes you have to install texlive-full
, it is around 3.5 GB
. To install it, run the following command in the terminal:
sudo apt install texlive-full
Then you can install texstudio
or texmaker
.
Source here
1
+1. Funny, this is actually the only correct answer and it was downvoted :). Though one can installtexstudio
alone, it will be pretty useless because one can't compile real latex documents with it; instead of installingtexlive-full
one can installtexlive
and additional packages, such astexlive-latex-extra
(given one knows what he needs).
– kludg
Dec 24 '17 at 17:48
add a comment |
up vote
9
down vote
Yes you have to install texlive-full
, it is around 3.5 GB
. To install it, run the following command in the terminal:
sudo apt install texlive-full
Then you can install texstudio
or texmaker
.
Source here
1
+1. Funny, this is actually the only correct answer and it was downvoted :). Though one can installtexstudio
alone, it will be pretty useless because one can't compile real latex documents with it; instead of installingtexlive-full
one can installtexlive
and additional packages, such astexlive-latex-extra
(given one knows what he needs).
– kludg
Dec 24 '17 at 17:48
add a comment |
up vote
9
down vote
up vote
9
down vote
Yes you have to install texlive-full
, it is around 3.5 GB
. To install it, run the following command in the terminal:
sudo apt install texlive-full
Then you can install texstudio
or texmaker
.
Source here
Yes you have to install texlive-full
, it is around 3.5 GB
. To install it, run the following command in the terminal:
sudo apt install texlive-full
Then you can install texstudio
or texmaker
.
Source here
edited May 22 at 9:08
Community♦
1
1
answered Oct 14 '17 at 3:48
Jeril
19913
19913
1
+1. Funny, this is actually the only correct answer and it was downvoted :). Though one can installtexstudio
alone, it will be pretty useless because one can't compile real latex documents with it; instead of installingtexlive-full
one can installtexlive
and additional packages, such astexlive-latex-extra
(given one knows what he needs).
– kludg
Dec 24 '17 at 17:48
add a comment |
1
+1. Funny, this is actually the only correct answer and it was downvoted :). Though one can installtexstudio
alone, it will be pretty useless because one can't compile real latex documents with it; instead of installingtexlive-full
one can installtexlive
and additional packages, such astexlive-latex-extra
(given one knows what he needs).
– kludg
Dec 24 '17 at 17:48
1
1
+1. Funny, this is actually the only correct answer and it was downvoted :). Though one can install
texstudio
alone, it will be pretty useless because one can't compile real latex documents with it; instead of installing texlive-full
one can install texlive
and additional packages, such as texlive-latex-extra
(given one knows what he needs).– kludg
Dec 24 '17 at 17:48
+1. Funny, this is actually the only correct answer and it was downvoted :). Though one can install
texstudio
alone, it will be pretty useless because one can't compile real latex documents with it; instead of installing texlive-full
one can install texlive
and additional packages, such as texlive-latex-extra
(given one knows what he needs).– kludg
Dec 24 '17 at 17:48
add a comment |
up vote
3
down vote
It is also possible to install it via the Ubuntu Software program, which might be easier for people that are new to Ubuntu.
- Open Ubuntu Software
- Search TeXstudio
- Press install and wait
add a comment |
up vote
3
down vote
It is also possible to install it via the Ubuntu Software program, which might be easier for people that are new to Ubuntu.
- Open Ubuntu Software
- Search TeXstudio
- Press install and wait
add a comment |
up vote
3
down vote
up vote
3
down vote
It is also possible to install it via the Ubuntu Software program, which might be easier for people that are new to Ubuntu.
- Open Ubuntu Software
- Search TeXstudio
- Press install and wait
It is also possible to install it via the Ubuntu Software program, which might be easier for people that are new to Ubuntu.
- Open Ubuntu Software
- Search TeXstudio
- Press install and wait
answered Aug 28 '17 at 18:25
Mefaso
312
312
add a comment |
add a comment |
up vote
2
down vote
When installing texstudio, you need to install texlive first, since texstudio is solely the "IDE"
While this may solve the issue, I would still recommend including instructions on how to installtexlive
withtexstudio
so that this will be a more useful answer for those who need it.
– Owen Hines
Jan 5 '17 at 16:44
add a comment |
up vote
2
down vote
When installing texstudio, you need to install texlive first, since texstudio is solely the "IDE"
While this may solve the issue, I would still recommend including instructions on how to installtexlive
withtexstudio
so that this will be a more useful answer for those who need it.
– Owen Hines
Jan 5 '17 at 16:44
add a comment |
up vote
2
down vote
up vote
2
down vote
When installing texstudio, you need to install texlive first, since texstudio is solely the "IDE"
When installing texstudio, you need to install texlive first, since texstudio is solely the "IDE"
answered Jan 5 '17 at 14:04
big mike
211
211
While this may solve the issue, I would still recommend including instructions on how to installtexlive
withtexstudio
so that this will be a more useful answer for those who need it.
– Owen Hines
Jan 5 '17 at 16:44
add a comment |
While this may solve the issue, I would still recommend including instructions on how to installtexlive
withtexstudio
so that this will be a more useful answer for those who need it.
– Owen Hines
Jan 5 '17 at 16:44
While this may solve the issue, I would still recommend including instructions on how to install
texlive
with texstudio
so that this will be a more useful answer for those who need it.– Owen Hines
Jan 5 '17 at 16:44
While this may solve the issue, I would still recommend including instructions on how to install
texlive
with texstudio
so that this will be a more useful answer for those who need it.– Owen Hines
Jan 5 '17 at 16:44
add a comment |
up vote
0
down vote
Texstudio is merely an IDE.
To get the full advantage of installing latex, you will have to use the command:
sudo apt install texlive-full // for ubuntu 16.04 and above
However, the above command can most often be a temptation. It installs so many extra (language) packages, most of which will be unnessary for your purpose. Therefore, it is recommended to use the command without the "full":
sudo apt install texlive // for ubuntu 16.04 and above
Hope this helps!
add a comment |
up vote
0
down vote
Texstudio is merely an IDE.
To get the full advantage of installing latex, you will have to use the command:
sudo apt install texlive-full // for ubuntu 16.04 and above
However, the above command can most often be a temptation. It installs so many extra (language) packages, most of which will be unnessary for your purpose. Therefore, it is recommended to use the command without the "full":
sudo apt install texlive // for ubuntu 16.04 and above
Hope this helps!
add a comment |
up vote
0
down vote
up vote
0
down vote
Texstudio is merely an IDE.
To get the full advantage of installing latex, you will have to use the command:
sudo apt install texlive-full // for ubuntu 16.04 and above
However, the above command can most often be a temptation. It installs so many extra (language) packages, most of which will be unnessary for your purpose. Therefore, it is recommended to use the command without the "full":
sudo apt install texlive // for ubuntu 16.04 and above
Hope this helps!
Texstudio is merely an IDE.
To get the full advantage of installing latex, you will have to use the command:
sudo apt install texlive-full // for ubuntu 16.04 and above
However, the above command can most often be a temptation. It installs so many extra (language) packages, most of which will be unnessary for your purpose. Therefore, it is recommended to use the command without the "full":
sudo apt install texlive // for ubuntu 16.04 and above
Hope this helps!
answered Jul 10 at 6:03
Anas
1
1
add a comment |
add a comment |
up vote
0
down vote
BRIEF
I've seen 2 types of answers here. Both answers are actually OK. You could just do as you say or install first texlive-full
.
- Option 1:
sudo apt-get install texstudio
will have texstudio using
texlive-base
. - Option 2:
sudo apt install texlive-base
+sudo apt-get install texstudio
will have texstudio usingtexlive-full
Both will have texstudio up and running and for most cases, the first option will be enough to compile. Option 2 will install every package so you'll never have to install any extra package when compiling.
I guess if you don't have space issues the second option is better. However, I am using Ubuntu on a live persistent USB drive without much space so I go for option 1.
You could check packages differences running apt-cache search texlive
(you'll see that there are actually more than 2 options).
add a comment |
up vote
0
down vote
BRIEF
I've seen 2 types of answers here. Both answers are actually OK. You could just do as you say or install first texlive-full
.
- Option 1:
sudo apt-get install texstudio
will have texstudio using
texlive-base
. - Option 2:
sudo apt install texlive-base
+sudo apt-get install texstudio
will have texstudio usingtexlive-full
Both will have texstudio up and running and for most cases, the first option will be enough to compile. Option 2 will install every package so you'll never have to install any extra package when compiling.
I guess if you don't have space issues the second option is better. However, I am using Ubuntu on a live persistent USB drive without much space so I go for option 1.
You could check packages differences running apt-cache search texlive
(you'll see that there are actually more than 2 options).
add a comment |
up vote
0
down vote
up vote
0
down vote
BRIEF
I've seen 2 types of answers here. Both answers are actually OK. You could just do as you say or install first texlive-full
.
- Option 1:
sudo apt-get install texstudio
will have texstudio using
texlive-base
. - Option 2:
sudo apt install texlive-base
+sudo apt-get install texstudio
will have texstudio usingtexlive-full
Both will have texstudio up and running and for most cases, the first option will be enough to compile. Option 2 will install every package so you'll never have to install any extra package when compiling.
I guess if you don't have space issues the second option is better. However, I am using Ubuntu on a live persistent USB drive without much space so I go for option 1.
You could check packages differences running apt-cache search texlive
(you'll see that there are actually more than 2 options).
BRIEF
I've seen 2 types of answers here. Both answers are actually OK. You could just do as you say or install first texlive-full
.
- Option 1:
sudo apt-get install texstudio
will have texstudio using
texlive-base
. - Option 2:
sudo apt install texlive-base
+sudo apt-get install texstudio
will have texstudio usingtexlive-full
Both will have texstudio up and running and for most cases, the first option will be enough to compile. Option 2 will install every package so you'll never have to install any extra package when compiling.
I guess if you don't have space issues the second option is better. However, I am using Ubuntu on a live persistent USB drive without much space so I go for option 1.
You could check packages differences running apt-cache search texlive
(you'll see that there are actually more than 2 options).
edited Dec 6 at 15:53
answered Oct 10 at 9:55
Agustin Barrachina
416
416
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f848949%2fhow-to-install-texstudio-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
With
apt-get
you are using the package manager.– Hannu
Nov 13 '16 at 17:00
2
I did it from Ubuntu Software center, it seems it lack a few things such as the top banner ... Do you have any idea ?
– ThePassenger
Jul 31 '17 at 12:20