How can I manually install a package on MiKTeX (Windows)
I'm new to LaTeX, investigating using it for some work projects. I'm using MiKTeX on Windows. My employer's locked-down network blocks the application's automatic installation function. I can take my laptop home and successfully install from there, but if I need a package in the middle of the day I'm stuck.
I am able to access the CTAN website and download the package files (.dtx or .ins?), but I don't know what do do with them. How can I do a manual package installation?
packages installing miktex windows
add a comment |
I'm new to LaTeX, investigating using it for some work projects. I'm using MiKTeX on Windows. My employer's locked-down network blocks the application's automatic installation function. I can take my laptop home and successfully install from there, but if I need a package in the middle of the day I'm stuck.
I am able to access the CTAN website and download the package files (.dtx or .ins?), but I don't know what do do with them. How can I do a manual package installation?
packages installing miktex windows
In case someone is looking for that: How to install an individual package on a Linux system (TeX Live)
– riddleculous
Apr 15 '16 at 14:32
4
Not an answer, but a suggestion: If your time is more valuable that the space in your hard disk, at home make a full install of MikTeX or TeXLive.
– Fran
Oct 27 '16 at 12:03
add a comment |
I'm new to LaTeX, investigating using it for some work projects. I'm using MiKTeX on Windows. My employer's locked-down network blocks the application's automatic installation function. I can take my laptop home and successfully install from there, but if I need a package in the middle of the day I'm stuck.
I am able to access the CTAN website and download the package files (.dtx or .ins?), but I don't know what do do with them. How can I do a manual package installation?
packages installing miktex windows
I'm new to LaTeX, investigating using it for some work projects. I'm using MiKTeX on Windows. My employer's locked-down network blocks the application's automatic installation function. I can take my laptop home and successfully install from there, but if I need a package in the middle of the day I'm stuck.
I am able to access the CTAN website and download the package files (.dtx or .ins?), but I don't know what do do with them. How can I do a manual package installation?
packages installing miktex windows
packages installing miktex windows
edited May 17 '11 at 17:32
Stefan Kottwitz♦
179k65574762
179k65574762
asked Aug 19 '10 at 23:31
mbmcavoymbmcavoy
1,2133108
1,2133108
In case someone is looking for that: How to install an individual package on a Linux system (TeX Live)
– riddleculous
Apr 15 '16 at 14:32
4
Not an answer, but a suggestion: If your time is more valuable that the space in your hard disk, at home make a full install of MikTeX or TeXLive.
– Fran
Oct 27 '16 at 12:03
add a comment |
In case someone is looking for that: How to install an individual package on a Linux system (TeX Live)
– riddleculous
Apr 15 '16 at 14:32
4
Not an answer, but a suggestion: If your time is more valuable that the space in your hard disk, at home make a full install of MikTeX or TeXLive.
– Fran
Oct 27 '16 at 12:03
In case someone is looking for that: How to install an individual package on a Linux system (TeX Live)
– riddleculous
Apr 15 '16 at 14:32
In case someone is looking for that: How to install an individual package on a Linux system (TeX Live)
– riddleculous
Apr 15 '16 at 14:32
4
4
Not an answer, but a suggestion: If your time is more valuable that the space in your hard disk, at home make a full install of MikTeX or TeXLive.
– Fran
Oct 27 '16 at 12:03
Not an answer, but a suggestion: If your time is more valuable that the space in your hard disk, at home make a full install of MikTeX or TeXLive.
– Fran
Oct 27 '16 at 12:03
add a comment |
7 Answers
7
active
oldest
votes
Firstly, check README files, available documentation of the package, perhaps the beginning of the .dtx
file to get installation information.
Installing a package available as dtx/ins bundle:
Download the content of the package directory.
dtx
is the extension of a documented source file,ins
is the extension of an installation file. Put this in a temporary directory.If there's nothing differently written in a README file run LaTeX (or TeX) on the
.ins
file. This is best done using the command prompt (latex packagename.ins
), but you may use your TeX editor in LaTeX/DVI-LaTeX mode or what it is called there. This would usually produce one or more files ending with.sty
, perhaps some additional files. As you now have cls or sty files or the like, the remaining steps are the same like in the next alternative way:
Installing sty or cls files:
Create a new directory with the package name in your local texmf directory structure, see also Create a local texmf tree in MiKTeX. Why not to choose the main MiKTeX texmf tree see in Purpose of local texmf trees.
Copy the package files (
*.sty
,*.cls
etc.) into this directory.Make the new package known to MiKTeX: refresh the MiKTeX filename database. To do this, click "Start/ Programs/ MiKTeX 2.x/ Maintenance/ Settings" (or similar) to get to the MiKTeX options, click the button "Refresh FNDB". The installation is complete.
If you did not download the documentation already, you could get it by running pdfLaTeX or LaTeX on the
.dtx
file. Compile twice to get correct references.
Obtaining and installing packaged universal archives:
Perhaps you could get a file with the extension .tds.zip
. Such files are archives fitting to your TeX directory structure. Open it, check the content structure. You could extract it to the right place. Also here, as after any installation, refresh the MiKTeX filename database.
Installing a font package
Installing a font package, especially for Type1 fonts, requires additonal steps. See Manual font installation.
Links with further information:
Integrating Local Additions on MiKTeX.org
What are documented LaTeX sources (.dtx files) in the UK TeX FAQ
Installing things on a (La)TeX system with detailed general instructions in the UK TeX FAQ
Downloading and Installing Packages by Nicola L. C. Talbot
The dtx format by Joseph Wright
A different and very effective way, using a local repository:
(works only for all in the MiKTeX package repository available packages)
Use the MiKTeX net installer to download the complete MiKTeX repository to a USB drive.
On a MiKTeX system, choose this directory as the local package repository in the package manager.
Use this local repository for installation and updates.
You may update that local repository later using the net installer: it loads the database from the server, compares and downloads new or updated packages.
this looks like a great answer! I'm not ready to call it "answered" as I haven't been able to successfully follow the process yet. I'd been able to get all the packages I'm immediately needing from home. Semi-randomly choosing other packages to install leads to dependencies on other missing packages that seems like a goose chase. Some packages, like "epsf", seem to come directly with .sty files instead of .ins. I'm assuming I just copy those in place? It doesn't seem to be recognized as installed...
– mbmcavoy
Aug 23 '10 at 18:08
2
Copying .sty files would be sufficient. To get them recognized click "Refresh FNDB" or runmktexlsr
ortexhash
at the command prompt. I'm not sure if the package manager shows them afterwards as installed but TeX would know about them.
– Stefan Kottwitz♦
Aug 23 '10 at 18:14
12
If you put packages in the main tree C:Program FilesMiKTeX 2.8texmftexlatexpackagename you must update the FNDB in admin mode if you have a multiuser setup. But my advice is to use the trees UserData, CommonData or even better a dedicated local tree for such additions. Packages in the main tree could get lost if one update to miktex 2.9. while one can easily attach a local tree to a new miktex version. The package manager will never show packages installed manually. And the update manager will ignore them too.
– Ulrike Fischer
Aug 29 '10 at 17:22
4
See my answer here tex.stackexchange.com/questions/1137/…
– xport
Jun 6 '11 at 22:28
1
@StefanKottwitz: Thanks for your comprehensive answer. Can you please explain what you mean by your line (For tds.zip file struture)..."Also here, as after any installation, refresh the MiKTeX filename database...How is this refreshing done?
– Abhimanyu Arora
Jun 11 '14 at 17:38
|
show 1 more comment
You can set up a local packages repository on your computer.
You need an internet access to download the MikTex packages.
My problem is that I can't succeed in setting up the internet proxy setup of MikTex in my system, so I have tried today the following solution with MikTex 2.9 and it worked with no problems; the on-the-fly package installation worked well too.
- Create the folder, for example
c:miktex_pkgs
Copy the following file to the folder
c:miktex_pkgs
(If you do not copy the files you will probably get some errors from MikTex. See http://bruceyf.wordpress.com/2008/05/07/miktexs-secret-local-package-repository/ for the details):
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/README.TXT
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb1-2.9.tar.lzma
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb2-2.9.tar.lzma
You can copy any packages you may need from http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packages to your local folder
c:miktex_pkgs
At this point you have two options.
Update your MikTex system: from the Windows Start menu -> Programs -> Miktex 2.9 -> Maintenance (Admin) -> launch the program "Settings (Admin)"
Go to the tab "Package repository" and choose the folder
c:miktex_pkgs
Install packages...
Open a command prompt and navigate to
c:miktex_pkgs
Use
mpm.exe --install {name}
to install packages. The{name}
does not include any of the extensions (.cab
,.tar.lzma
,.tar.bz2
, etc.).
1
This task is simplified by the »MiKTeX Net Installer«. It lets you download a complete MiKTeX System to a folder of your choice (including the database files). You can also keep this folder up to date by the installer and use it for updates to the system.
– Thorsten Donig
Apr 19 '11 at 18:30
Thank you. My access to internet is via a proxy, have you ever try the "MiKTeX Net Installer" with a proxy?
– Alessandro Jacopson
Apr 19 '11 at 18:36
No. So you have to try on your own. But you can determine the connection settings and insert a proxy.
– Thorsten Donig
Apr 20 '11 at 8:25
The links you gave didn't work for me, but I'm found the needed files here: ftp.uni-erlangen.de/mirrors/CTAN/systems/win32/miktex/tm/… both miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma are there, and you don't need the readme file
– Adi Ro
Oct 31 '16 at 8:01
@AlessandroJacopson, Is there a link to download all packages at once? Thank You.
– Royi
Dec 4 '16 at 6:44
|
show 1 more comment
Have you tried to log into your admin account and then - using the shortcuts in the start menu - to go to the package-manager? There you can manually search for the packages which you access using the usepackage
-command and install them by simply clicking onto the plus on the top left. Important note: Always open the package manager using a right click and choose "Open as admin".
For me this always works out...
2
The keyword of the question is manually.
– percusse
Jul 9 '15 at 9:44
Do you mean to use the Windows admin account? I do have admin privileges, but the problem in this case isn't that I don't have rights on my PC, but that the network firewalls were blocking the automatic installer, I could download packages manually, but could not figure out how to install so I could use them.
– mbmcavoy
Jul 9 '15 at 20:39
add a comment |
This is a simple and straightforward answer that worked for me.
As an example I'll take the listofitems package of CTAN and Miktex 2.9. We suppose the package is not available in the Miktex Package Manager, otherwise it can be directly installed with the manager.
- Create a local directory where you are gonna have all your manually installed packages. For example:
C:myextrapackagestexlatex
(thetexlatex
folder and subfolder must be there, if not Miktex won't accept the directory as S. Kottwitz said above, butmyextrapackage
can be any path you choose.) - Add the directory
C:myextrapackages
to Miktex. Procedure: go toMiktex Settings
-> select the tabRoots
-> and click on theAdd
Button (more details here)
Note: See that we have left out thetexlatex
folders from the added path. If you try to add the full pathC:myextrapackagestexlatex
to Miktex you may get an error. - Download the .zip file with the package (in our case listofitems.zip available on the CTAN page)
- Unpack the contents of the .zip package file in a package folder with the same name (in our case
listofitems.zip
is unpacked in the folderlistofitems
). - Copy the package folder into your already new added directory. (in this example the final result is the directory
C:myextrapackagestexlatexlistofitems
with all the unpacked files inside)
In the future, if you download more packages, you skip steps 1. and 2. And follow steps 3 through 5 using your available local directory (in this case C:myextrapackagestexlatex
)
add a comment |
I give here my small personal contribution concerning manual installation of packages in MiKTeX (Windows).
As I find very annoying when there is an error 503 or 404 with the internet connection when trying to install a package (package manager - network update).
My environments:
My whole work is done in the great Debian Linux environment. In fact I rarely use Windows because of its alarming security holes and vulnerabilities.
When there is no Debian Linux available and I am unfortunately forced to use Windows, then I do my Latex work using the USBTEX (Miktex + Texmaker) in Windows environment.
I download the target package from the CTAN repository.
The package xifthen
is used as an example.
In Windows:
Directories used:
All the work is done in a USB stick. USBTEX is installed in this USB stick in the directory:
X:USBTeX-1.7
My work directory:
X:LatexMy_documents
How to install a new package from CTAN if the internet connection is not working or I am getting server connection errors 404 or 503:
MiKTeX - Missing package error during Texmaker compilation:
error:LaTeX Error: File
xifthen.sty' not found.`Using your browser download package
xifthen.tar.lzma
from:
http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packagesUsing 7-zip open the archive
xifthen.tar.lzma
and enterxifthen.tar.lzmaxifthen.tartexmf
Copy (just select all and drag) all directories like:
doc
source
tex
tpm
...
to:
X:USBTeX-1.7programsMiKTeX_2.9
when asked if "Do you still want to merge this folder" answer "Yes"
and if asked to replace files say "Copy and Replace" to replace the old files.
Then run (Windows double click and after give administrator user/password):
X:USBTeX-1.7programsMiKTeX_2.9miktexbinmo_admin.exe
In menu:
General> click on "Refresh FRDB" to add the copied files to database.
The files will look as newly installed.
Now you can compile again in Texmaker (>tools>quick build).
There will be no error concerning this missing package.Please follow the same procedure to install other missing packages.
I hope it will help other users who are having problems with missing packages and would like to perform a manual package installation in MiKTeX (Windows).
add a comment |
A similar yet a little bit different way than Alessandro Jacopson's answer is the following:
- Use the miktex setting (user and/or admin) program installed with the basic MikTex distribution to set "Install missing packages on-the-fly" to "Ask me first".
Create a miktex local repository as in Alessandro Jacopson's answer, i.e., create a folder with appropriate name, then place
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
from CTAN in the folder.
Compile a .tex file. If anything used in the file is missing, a dialog window will prompt up to ask you if you'd like to install the first missing package.
Go to CTAN and download said package into the local repository where you have put miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma.
Choose your local repository in the dialog window from step 3. Then click install in the dialog window.
Repeat steps 4-5, if any other packages are missing.
This way, you could install needed packages on-the-fly, even on a computer that can only access Internet via a navigator. There is also no need to download everything from CTAN which can be a little challenging to do, if internet access is very limited. Potentially you may need to install quite a few packages, but every package only needs to be installed once. The steps for installing on-the-fly are also relatively short.
I have had to do this a few times, since my company uses a proxy script to control internet access, and MikTex does not allow this kind of proxy.
One thing that you need to look out for is that the two files miktex-zzdbxxxxxx are sometimes updated, and therefore your local repository wouldn't work any more. So if the trick worked before, and suddenly stopped working, it's probably because you have to update (manually download) these two files again.
add a comment |
Create a folder in your computer (for example, C:MyUsepackage).
Download the following two files at here.
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
You might need to wait a minute for loading the list if you visit this website first time.
Thanks for this post.Put these two files into the folder you created.
Start->All Programs->MiKTeX 2.9->Maintenance (Admin)->Settings (Admin).
Don't use "Search programs and files". It's an idiot!Switch to the "Packages" label and press "Change" button.
Select "Packages shall be installed from a directory" and browse the folder you created.
Wait a minute.
Now you just download the usepackages you need from the archive
and place them in the folder C:MyUsepackage. They are all xxx.tar.lzma files. You don't have to extract them if you use WinEdt. It will do that when it is compiling your tex file.Note that sometime the usepackage you included has a different name from the xxx.tar.lzma file. You can know the xxx.tar.lzma file's name in the warning message.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2ftex.stackexchange.com%2fquestions%2f2063%2fhow-can-i-manually-install-a-package-on-miktex-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
Firstly, check README files, available documentation of the package, perhaps the beginning of the .dtx
file to get installation information.
Installing a package available as dtx/ins bundle:
Download the content of the package directory.
dtx
is the extension of a documented source file,ins
is the extension of an installation file. Put this in a temporary directory.If there's nothing differently written in a README file run LaTeX (or TeX) on the
.ins
file. This is best done using the command prompt (latex packagename.ins
), but you may use your TeX editor in LaTeX/DVI-LaTeX mode or what it is called there. This would usually produce one or more files ending with.sty
, perhaps some additional files. As you now have cls or sty files or the like, the remaining steps are the same like in the next alternative way:
Installing sty or cls files:
Create a new directory with the package name in your local texmf directory structure, see also Create a local texmf tree in MiKTeX. Why not to choose the main MiKTeX texmf tree see in Purpose of local texmf trees.
Copy the package files (
*.sty
,*.cls
etc.) into this directory.Make the new package known to MiKTeX: refresh the MiKTeX filename database. To do this, click "Start/ Programs/ MiKTeX 2.x/ Maintenance/ Settings" (or similar) to get to the MiKTeX options, click the button "Refresh FNDB". The installation is complete.
If you did not download the documentation already, you could get it by running pdfLaTeX or LaTeX on the
.dtx
file. Compile twice to get correct references.
Obtaining and installing packaged universal archives:
Perhaps you could get a file with the extension .tds.zip
. Such files are archives fitting to your TeX directory structure. Open it, check the content structure. You could extract it to the right place. Also here, as after any installation, refresh the MiKTeX filename database.
Installing a font package
Installing a font package, especially for Type1 fonts, requires additonal steps. See Manual font installation.
Links with further information:
Integrating Local Additions on MiKTeX.org
What are documented LaTeX sources (.dtx files) in the UK TeX FAQ
Installing things on a (La)TeX system with detailed general instructions in the UK TeX FAQ
Downloading and Installing Packages by Nicola L. C. Talbot
The dtx format by Joseph Wright
A different and very effective way, using a local repository:
(works only for all in the MiKTeX package repository available packages)
Use the MiKTeX net installer to download the complete MiKTeX repository to a USB drive.
On a MiKTeX system, choose this directory as the local package repository in the package manager.
Use this local repository for installation and updates.
You may update that local repository later using the net installer: it loads the database from the server, compares and downloads new or updated packages.
this looks like a great answer! I'm not ready to call it "answered" as I haven't been able to successfully follow the process yet. I'd been able to get all the packages I'm immediately needing from home. Semi-randomly choosing other packages to install leads to dependencies on other missing packages that seems like a goose chase. Some packages, like "epsf", seem to come directly with .sty files instead of .ins. I'm assuming I just copy those in place? It doesn't seem to be recognized as installed...
– mbmcavoy
Aug 23 '10 at 18:08
2
Copying .sty files would be sufficient. To get them recognized click "Refresh FNDB" or runmktexlsr
ortexhash
at the command prompt. I'm not sure if the package manager shows them afterwards as installed but TeX would know about them.
– Stefan Kottwitz♦
Aug 23 '10 at 18:14
12
If you put packages in the main tree C:Program FilesMiKTeX 2.8texmftexlatexpackagename you must update the FNDB in admin mode if you have a multiuser setup. But my advice is to use the trees UserData, CommonData or even better a dedicated local tree for such additions. Packages in the main tree could get lost if one update to miktex 2.9. while one can easily attach a local tree to a new miktex version. The package manager will never show packages installed manually. And the update manager will ignore them too.
– Ulrike Fischer
Aug 29 '10 at 17:22
4
See my answer here tex.stackexchange.com/questions/1137/…
– xport
Jun 6 '11 at 22:28
1
@StefanKottwitz: Thanks for your comprehensive answer. Can you please explain what you mean by your line (For tds.zip file struture)..."Also here, as after any installation, refresh the MiKTeX filename database...How is this refreshing done?
– Abhimanyu Arora
Jun 11 '14 at 17:38
|
show 1 more comment
Firstly, check README files, available documentation of the package, perhaps the beginning of the .dtx
file to get installation information.
Installing a package available as dtx/ins bundle:
Download the content of the package directory.
dtx
is the extension of a documented source file,ins
is the extension of an installation file. Put this in a temporary directory.If there's nothing differently written in a README file run LaTeX (or TeX) on the
.ins
file. This is best done using the command prompt (latex packagename.ins
), but you may use your TeX editor in LaTeX/DVI-LaTeX mode or what it is called there. This would usually produce one or more files ending with.sty
, perhaps some additional files. As you now have cls or sty files or the like, the remaining steps are the same like in the next alternative way:
Installing sty or cls files:
Create a new directory with the package name in your local texmf directory structure, see also Create a local texmf tree in MiKTeX. Why not to choose the main MiKTeX texmf tree see in Purpose of local texmf trees.
Copy the package files (
*.sty
,*.cls
etc.) into this directory.Make the new package known to MiKTeX: refresh the MiKTeX filename database. To do this, click "Start/ Programs/ MiKTeX 2.x/ Maintenance/ Settings" (or similar) to get to the MiKTeX options, click the button "Refresh FNDB". The installation is complete.
If you did not download the documentation already, you could get it by running pdfLaTeX or LaTeX on the
.dtx
file. Compile twice to get correct references.
Obtaining and installing packaged universal archives:
Perhaps you could get a file with the extension .tds.zip
. Such files are archives fitting to your TeX directory structure. Open it, check the content structure. You could extract it to the right place. Also here, as after any installation, refresh the MiKTeX filename database.
Installing a font package
Installing a font package, especially for Type1 fonts, requires additonal steps. See Manual font installation.
Links with further information:
Integrating Local Additions on MiKTeX.org
What are documented LaTeX sources (.dtx files) in the UK TeX FAQ
Installing things on a (La)TeX system with detailed general instructions in the UK TeX FAQ
Downloading and Installing Packages by Nicola L. C. Talbot
The dtx format by Joseph Wright
A different and very effective way, using a local repository:
(works only for all in the MiKTeX package repository available packages)
Use the MiKTeX net installer to download the complete MiKTeX repository to a USB drive.
On a MiKTeX system, choose this directory as the local package repository in the package manager.
Use this local repository for installation and updates.
You may update that local repository later using the net installer: it loads the database from the server, compares and downloads new or updated packages.
this looks like a great answer! I'm not ready to call it "answered" as I haven't been able to successfully follow the process yet. I'd been able to get all the packages I'm immediately needing from home. Semi-randomly choosing other packages to install leads to dependencies on other missing packages that seems like a goose chase. Some packages, like "epsf", seem to come directly with .sty files instead of .ins. I'm assuming I just copy those in place? It doesn't seem to be recognized as installed...
– mbmcavoy
Aug 23 '10 at 18:08
2
Copying .sty files would be sufficient. To get them recognized click "Refresh FNDB" or runmktexlsr
ortexhash
at the command prompt. I'm not sure if the package manager shows them afterwards as installed but TeX would know about them.
– Stefan Kottwitz♦
Aug 23 '10 at 18:14
12
If you put packages in the main tree C:Program FilesMiKTeX 2.8texmftexlatexpackagename you must update the FNDB in admin mode if you have a multiuser setup. But my advice is to use the trees UserData, CommonData or even better a dedicated local tree for such additions. Packages in the main tree could get lost if one update to miktex 2.9. while one can easily attach a local tree to a new miktex version. The package manager will never show packages installed manually. And the update manager will ignore them too.
– Ulrike Fischer
Aug 29 '10 at 17:22
4
See my answer here tex.stackexchange.com/questions/1137/…
– xport
Jun 6 '11 at 22:28
1
@StefanKottwitz: Thanks for your comprehensive answer. Can you please explain what you mean by your line (For tds.zip file struture)..."Also here, as after any installation, refresh the MiKTeX filename database...How is this refreshing done?
– Abhimanyu Arora
Jun 11 '14 at 17:38
|
show 1 more comment
Firstly, check README files, available documentation of the package, perhaps the beginning of the .dtx
file to get installation information.
Installing a package available as dtx/ins bundle:
Download the content of the package directory.
dtx
is the extension of a documented source file,ins
is the extension of an installation file. Put this in a temporary directory.If there's nothing differently written in a README file run LaTeX (or TeX) on the
.ins
file. This is best done using the command prompt (latex packagename.ins
), but you may use your TeX editor in LaTeX/DVI-LaTeX mode or what it is called there. This would usually produce one or more files ending with.sty
, perhaps some additional files. As you now have cls or sty files or the like, the remaining steps are the same like in the next alternative way:
Installing sty or cls files:
Create a new directory with the package name in your local texmf directory structure, see also Create a local texmf tree in MiKTeX. Why not to choose the main MiKTeX texmf tree see in Purpose of local texmf trees.
Copy the package files (
*.sty
,*.cls
etc.) into this directory.Make the new package known to MiKTeX: refresh the MiKTeX filename database. To do this, click "Start/ Programs/ MiKTeX 2.x/ Maintenance/ Settings" (or similar) to get to the MiKTeX options, click the button "Refresh FNDB". The installation is complete.
If you did not download the documentation already, you could get it by running pdfLaTeX or LaTeX on the
.dtx
file. Compile twice to get correct references.
Obtaining and installing packaged universal archives:
Perhaps you could get a file with the extension .tds.zip
. Such files are archives fitting to your TeX directory structure. Open it, check the content structure. You could extract it to the right place. Also here, as after any installation, refresh the MiKTeX filename database.
Installing a font package
Installing a font package, especially for Type1 fonts, requires additonal steps. See Manual font installation.
Links with further information:
Integrating Local Additions on MiKTeX.org
What are documented LaTeX sources (.dtx files) in the UK TeX FAQ
Installing things on a (La)TeX system with detailed general instructions in the UK TeX FAQ
Downloading and Installing Packages by Nicola L. C. Talbot
The dtx format by Joseph Wright
A different and very effective way, using a local repository:
(works only for all in the MiKTeX package repository available packages)
Use the MiKTeX net installer to download the complete MiKTeX repository to a USB drive.
On a MiKTeX system, choose this directory as the local package repository in the package manager.
Use this local repository for installation and updates.
You may update that local repository later using the net installer: it loads the database from the server, compares and downloads new or updated packages.
Firstly, check README files, available documentation of the package, perhaps the beginning of the .dtx
file to get installation information.
Installing a package available as dtx/ins bundle:
Download the content of the package directory.
dtx
is the extension of a documented source file,ins
is the extension of an installation file. Put this in a temporary directory.If there's nothing differently written in a README file run LaTeX (or TeX) on the
.ins
file. This is best done using the command prompt (latex packagename.ins
), but you may use your TeX editor in LaTeX/DVI-LaTeX mode or what it is called there. This would usually produce one or more files ending with.sty
, perhaps some additional files. As you now have cls or sty files or the like, the remaining steps are the same like in the next alternative way:
Installing sty or cls files:
Create a new directory with the package name in your local texmf directory structure, see also Create a local texmf tree in MiKTeX. Why not to choose the main MiKTeX texmf tree see in Purpose of local texmf trees.
Copy the package files (
*.sty
,*.cls
etc.) into this directory.Make the new package known to MiKTeX: refresh the MiKTeX filename database. To do this, click "Start/ Programs/ MiKTeX 2.x/ Maintenance/ Settings" (or similar) to get to the MiKTeX options, click the button "Refresh FNDB". The installation is complete.
If you did not download the documentation already, you could get it by running pdfLaTeX or LaTeX on the
.dtx
file. Compile twice to get correct references.
Obtaining and installing packaged universal archives:
Perhaps you could get a file with the extension .tds.zip
. Such files are archives fitting to your TeX directory structure. Open it, check the content structure. You could extract it to the right place. Also here, as after any installation, refresh the MiKTeX filename database.
Installing a font package
Installing a font package, especially for Type1 fonts, requires additonal steps. See Manual font installation.
Links with further information:
Integrating Local Additions on MiKTeX.org
What are documented LaTeX sources (.dtx files) in the UK TeX FAQ
Installing things on a (La)TeX system with detailed general instructions in the UK TeX FAQ
Downloading and Installing Packages by Nicola L. C. Talbot
The dtx format by Joseph Wright
A different and very effective way, using a local repository:
(works only for all in the MiKTeX package repository available packages)
Use the MiKTeX net installer to download the complete MiKTeX repository to a USB drive.
On a MiKTeX system, choose this directory as the local package repository in the package manager.
Use this local repository for installation and updates.
You may update that local repository later using the net installer: it loads the database from the server, compares and downloads new or updated packages.
edited May 16 '18 at 7:33
moewe
96.7k10118362
96.7k10118362
answered Aug 20 '10 at 0:15
Stefan Kottwitz♦Stefan Kottwitz
179k65574762
179k65574762
this looks like a great answer! I'm not ready to call it "answered" as I haven't been able to successfully follow the process yet. I'd been able to get all the packages I'm immediately needing from home. Semi-randomly choosing other packages to install leads to dependencies on other missing packages that seems like a goose chase. Some packages, like "epsf", seem to come directly with .sty files instead of .ins. I'm assuming I just copy those in place? It doesn't seem to be recognized as installed...
– mbmcavoy
Aug 23 '10 at 18:08
2
Copying .sty files would be sufficient. To get them recognized click "Refresh FNDB" or runmktexlsr
ortexhash
at the command prompt. I'm not sure if the package manager shows them afterwards as installed but TeX would know about them.
– Stefan Kottwitz♦
Aug 23 '10 at 18:14
12
If you put packages in the main tree C:Program FilesMiKTeX 2.8texmftexlatexpackagename you must update the FNDB in admin mode if you have a multiuser setup. But my advice is to use the trees UserData, CommonData or even better a dedicated local tree for such additions. Packages in the main tree could get lost if one update to miktex 2.9. while one can easily attach a local tree to a new miktex version. The package manager will never show packages installed manually. And the update manager will ignore them too.
– Ulrike Fischer
Aug 29 '10 at 17:22
4
See my answer here tex.stackexchange.com/questions/1137/…
– xport
Jun 6 '11 at 22:28
1
@StefanKottwitz: Thanks for your comprehensive answer. Can you please explain what you mean by your line (For tds.zip file struture)..."Also here, as after any installation, refresh the MiKTeX filename database...How is this refreshing done?
– Abhimanyu Arora
Jun 11 '14 at 17:38
|
show 1 more comment
this looks like a great answer! I'm not ready to call it "answered" as I haven't been able to successfully follow the process yet. I'd been able to get all the packages I'm immediately needing from home. Semi-randomly choosing other packages to install leads to dependencies on other missing packages that seems like a goose chase. Some packages, like "epsf", seem to come directly with .sty files instead of .ins. I'm assuming I just copy those in place? It doesn't seem to be recognized as installed...
– mbmcavoy
Aug 23 '10 at 18:08
2
Copying .sty files would be sufficient. To get them recognized click "Refresh FNDB" or runmktexlsr
ortexhash
at the command prompt. I'm not sure if the package manager shows them afterwards as installed but TeX would know about them.
– Stefan Kottwitz♦
Aug 23 '10 at 18:14
12
If you put packages in the main tree C:Program FilesMiKTeX 2.8texmftexlatexpackagename you must update the FNDB in admin mode if you have a multiuser setup. But my advice is to use the trees UserData, CommonData or even better a dedicated local tree for such additions. Packages in the main tree could get lost if one update to miktex 2.9. while one can easily attach a local tree to a new miktex version. The package manager will never show packages installed manually. And the update manager will ignore them too.
– Ulrike Fischer
Aug 29 '10 at 17:22
4
See my answer here tex.stackexchange.com/questions/1137/…
– xport
Jun 6 '11 at 22:28
1
@StefanKottwitz: Thanks for your comprehensive answer. Can you please explain what you mean by your line (For tds.zip file struture)..."Also here, as after any installation, refresh the MiKTeX filename database...How is this refreshing done?
– Abhimanyu Arora
Jun 11 '14 at 17:38
this looks like a great answer! I'm not ready to call it "answered" as I haven't been able to successfully follow the process yet. I'd been able to get all the packages I'm immediately needing from home. Semi-randomly choosing other packages to install leads to dependencies on other missing packages that seems like a goose chase. Some packages, like "epsf", seem to come directly with .sty files instead of .ins. I'm assuming I just copy those in place? It doesn't seem to be recognized as installed...
– mbmcavoy
Aug 23 '10 at 18:08
this looks like a great answer! I'm not ready to call it "answered" as I haven't been able to successfully follow the process yet. I'd been able to get all the packages I'm immediately needing from home. Semi-randomly choosing other packages to install leads to dependencies on other missing packages that seems like a goose chase. Some packages, like "epsf", seem to come directly with .sty files instead of .ins. I'm assuming I just copy those in place? It doesn't seem to be recognized as installed...
– mbmcavoy
Aug 23 '10 at 18:08
2
2
Copying .sty files would be sufficient. To get them recognized click "Refresh FNDB" or run
mktexlsr
or texhash
at the command prompt. I'm not sure if the package manager shows them afterwards as installed but TeX would know about them.– Stefan Kottwitz♦
Aug 23 '10 at 18:14
Copying .sty files would be sufficient. To get them recognized click "Refresh FNDB" or run
mktexlsr
or texhash
at the command prompt. I'm not sure if the package manager shows them afterwards as installed but TeX would know about them.– Stefan Kottwitz♦
Aug 23 '10 at 18:14
12
12
If you put packages in the main tree C:Program FilesMiKTeX 2.8texmftexlatexpackagename you must update the FNDB in admin mode if you have a multiuser setup. But my advice is to use the trees UserData, CommonData or even better a dedicated local tree for such additions. Packages in the main tree could get lost if one update to miktex 2.9. while one can easily attach a local tree to a new miktex version. The package manager will never show packages installed manually. And the update manager will ignore them too.
– Ulrike Fischer
Aug 29 '10 at 17:22
If you put packages in the main tree C:Program FilesMiKTeX 2.8texmftexlatexpackagename you must update the FNDB in admin mode if you have a multiuser setup. But my advice is to use the trees UserData, CommonData or even better a dedicated local tree for such additions. Packages in the main tree could get lost if one update to miktex 2.9. while one can easily attach a local tree to a new miktex version. The package manager will never show packages installed manually. And the update manager will ignore them too.
– Ulrike Fischer
Aug 29 '10 at 17:22
4
4
See my answer here tex.stackexchange.com/questions/1137/…
– xport
Jun 6 '11 at 22:28
See my answer here tex.stackexchange.com/questions/1137/…
– xport
Jun 6 '11 at 22:28
1
1
@StefanKottwitz: Thanks for your comprehensive answer. Can you please explain what you mean by your line (For tds.zip file struture)..."Also here, as after any installation, refresh the MiKTeX filename database...How is this refreshing done?
– Abhimanyu Arora
Jun 11 '14 at 17:38
@StefanKottwitz: Thanks for your comprehensive answer. Can you please explain what you mean by your line (For tds.zip file struture)..."Also here, as after any installation, refresh the MiKTeX filename database...How is this refreshing done?
– Abhimanyu Arora
Jun 11 '14 at 17:38
|
show 1 more comment
You can set up a local packages repository on your computer.
You need an internet access to download the MikTex packages.
My problem is that I can't succeed in setting up the internet proxy setup of MikTex in my system, so I have tried today the following solution with MikTex 2.9 and it worked with no problems; the on-the-fly package installation worked well too.
- Create the folder, for example
c:miktex_pkgs
Copy the following file to the folder
c:miktex_pkgs
(If you do not copy the files you will probably get some errors from MikTex. See http://bruceyf.wordpress.com/2008/05/07/miktexs-secret-local-package-repository/ for the details):
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/README.TXT
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb1-2.9.tar.lzma
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb2-2.9.tar.lzma
You can copy any packages you may need from http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packages to your local folder
c:miktex_pkgs
At this point you have two options.
Update your MikTex system: from the Windows Start menu -> Programs -> Miktex 2.9 -> Maintenance (Admin) -> launch the program "Settings (Admin)"
Go to the tab "Package repository" and choose the folder
c:miktex_pkgs
Install packages...
Open a command prompt and navigate to
c:miktex_pkgs
Use
mpm.exe --install {name}
to install packages. The{name}
does not include any of the extensions (.cab
,.tar.lzma
,.tar.bz2
, etc.).
1
This task is simplified by the »MiKTeX Net Installer«. It lets you download a complete MiKTeX System to a folder of your choice (including the database files). You can also keep this folder up to date by the installer and use it for updates to the system.
– Thorsten Donig
Apr 19 '11 at 18:30
Thank you. My access to internet is via a proxy, have you ever try the "MiKTeX Net Installer" with a proxy?
– Alessandro Jacopson
Apr 19 '11 at 18:36
No. So you have to try on your own. But you can determine the connection settings and insert a proxy.
– Thorsten Donig
Apr 20 '11 at 8:25
The links you gave didn't work for me, but I'm found the needed files here: ftp.uni-erlangen.de/mirrors/CTAN/systems/win32/miktex/tm/… both miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma are there, and you don't need the readme file
– Adi Ro
Oct 31 '16 at 8:01
@AlessandroJacopson, Is there a link to download all packages at once? Thank You.
– Royi
Dec 4 '16 at 6:44
|
show 1 more comment
You can set up a local packages repository on your computer.
You need an internet access to download the MikTex packages.
My problem is that I can't succeed in setting up the internet proxy setup of MikTex in my system, so I have tried today the following solution with MikTex 2.9 and it worked with no problems; the on-the-fly package installation worked well too.
- Create the folder, for example
c:miktex_pkgs
Copy the following file to the folder
c:miktex_pkgs
(If you do not copy the files you will probably get some errors from MikTex. See http://bruceyf.wordpress.com/2008/05/07/miktexs-secret-local-package-repository/ for the details):
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/README.TXT
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb1-2.9.tar.lzma
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb2-2.9.tar.lzma
You can copy any packages you may need from http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packages to your local folder
c:miktex_pkgs
At this point you have two options.
Update your MikTex system: from the Windows Start menu -> Programs -> Miktex 2.9 -> Maintenance (Admin) -> launch the program "Settings (Admin)"
Go to the tab "Package repository" and choose the folder
c:miktex_pkgs
Install packages...
Open a command prompt and navigate to
c:miktex_pkgs
Use
mpm.exe --install {name}
to install packages. The{name}
does not include any of the extensions (.cab
,.tar.lzma
,.tar.bz2
, etc.).
1
This task is simplified by the »MiKTeX Net Installer«. It lets you download a complete MiKTeX System to a folder of your choice (including the database files). You can also keep this folder up to date by the installer and use it for updates to the system.
– Thorsten Donig
Apr 19 '11 at 18:30
Thank you. My access to internet is via a proxy, have you ever try the "MiKTeX Net Installer" with a proxy?
– Alessandro Jacopson
Apr 19 '11 at 18:36
No. So you have to try on your own. But you can determine the connection settings and insert a proxy.
– Thorsten Donig
Apr 20 '11 at 8:25
The links you gave didn't work for me, but I'm found the needed files here: ftp.uni-erlangen.de/mirrors/CTAN/systems/win32/miktex/tm/… both miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma are there, and you don't need the readme file
– Adi Ro
Oct 31 '16 at 8:01
@AlessandroJacopson, Is there a link to download all packages at once? Thank You.
– Royi
Dec 4 '16 at 6:44
|
show 1 more comment
You can set up a local packages repository on your computer.
You need an internet access to download the MikTex packages.
My problem is that I can't succeed in setting up the internet proxy setup of MikTex in my system, so I have tried today the following solution with MikTex 2.9 and it worked with no problems; the on-the-fly package installation worked well too.
- Create the folder, for example
c:miktex_pkgs
Copy the following file to the folder
c:miktex_pkgs
(If you do not copy the files you will probably get some errors from MikTex. See http://bruceyf.wordpress.com/2008/05/07/miktexs-secret-local-package-repository/ for the details):
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/README.TXT
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb1-2.9.tar.lzma
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb2-2.9.tar.lzma
You can copy any packages you may need from http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packages to your local folder
c:miktex_pkgs
At this point you have two options.
Update your MikTex system: from the Windows Start menu -> Programs -> Miktex 2.9 -> Maintenance (Admin) -> launch the program "Settings (Admin)"
Go to the tab "Package repository" and choose the folder
c:miktex_pkgs
Install packages...
Open a command prompt and navigate to
c:miktex_pkgs
Use
mpm.exe --install {name}
to install packages. The{name}
does not include any of the extensions (.cab
,.tar.lzma
,.tar.bz2
, etc.).
You can set up a local packages repository on your computer.
You need an internet access to download the MikTex packages.
My problem is that I can't succeed in setting up the internet proxy setup of MikTex in my system, so I have tried today the following solution with MikTex 2.9 and it worked with no problems; the on-the-fly package installation worked well too.
- Create the folder, for example
c:miktex_pkgs
Copy the following file to the folder
c:miktex_pkgs
(If you do not copy the files you will probably get some errors from MikTex. See http://bruceyf.wordpress.com/2008/05/07/miktexs-secret-local-package-repository/ for the details):
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/README.TXT
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb1-2.9.tar.lzma
http://mirrors.ctan.org/systems/win32/miktex/tm/packages/miktex-zzdb2-2.9.tar.lzma
You can copy any packages you may need from http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packages to your local folder
c:miktex_pkgs
At this point you have two options.
Update your MikTex system: from the Windows Start menu -> Programs -> Miktex 2.9 -> Maintenance (Admin) -> launch the program "Settings (Admin)"
Go to the tab "Package repository" and choose the folder
c:miktex_pkgs
Install packages...
Open a command prompt and navigate to
c:miktex_pkgs
Use
mpm.exe --install {name}
to install packages. The{name}
does not include any of the extensions (.cab
,.tar.lzma
,.tar.bz2
, etc.).
edited May 2 '13 at 12:14
SimplyKnownAsG
1798
1798
answered Apr 19 '11 at 17:40
Alessandro JacopsonAlessandro Jacopson
549411
549411
1
This task is simplified by the »MiKTeX Net Installer«. It lets you download a complete MiKTeX System to a folder of your choice (including the database files). You can also keep this folder up to date by the installer and use it for updates to the system.
– Thorsten Donig
Apr 19 '11 at 18:30
Thank you. My access to internet is via a proxy, have you ever try the "MiKTeX Net Installer" with a proxy?
– Alessandro Jacopson
Apr 19 '11 at 18:36
No. So you have to try on your own. But you can determine the connection settings and insert a proxy.
– Thorsten Donig
Apr 20 '11 at 8:25
The links you gave didn't work for me, but I'm found the needed files here: ftp.uni-erlangen.de/mirrors/CTAN/systems/win32/miktex/tm/… both miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma are there, and you don't need the readme file
– Adi Ro
Oct 31 '16 at 8:01
@AlessandroJacopson, Is there a link to download all packages at once? Thank You.
– Royi
Dec 4 '16 at 6:44
|
show 1 more comment
1
This task is simplified by the »MiKTeX Net Installer«. It lets you download a complete MiKTeX System to a folder of your choice (including the database files). You can also keep this folder up to date by the installer and use it for updates to the system.
– Thorsten Donig
Apr 19 '11 at 18:30
Thank you. My access to internet is via a proxy, have you ever try the "MiKTeX Net Installer" with a proxy?
– Alessandro Jacopson
Apr 19 '11 at 18:36
No. So you have to try on your own. But you can determine the connection settings and insert a proxy.
– Thorsten Donig
Apr 20 '11 at 8:25
The links you gave didn't work for me, but I'm found the needed files here: ftp.uni-erlangen.de/mirrors/CTAN/systems/win32/miktex/tm/… both miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma are there, and you don't need the readme file
– Adi Ro
Oct 31 '16 at 8:01
@AlessandroJacopson, Is there a link to download all packages at once? Thank You.
– Royi
Dec 4 '16 at 6:44
1
1
This task is simplified by the »MiKTeX Net Installer«. It lets you download a complete MiKTeX System to a folder of your choice (including the database files). You can also keep this folder up to date by the installer and use it for updates to the system.
– Thorsten Donig
Apr 19 '11 at 18:30
This task is simplified by the »MiKTeX Net Installer«. It lets you download a complete MiKTeX System to a folder of your choice (including the database files). You can also keep this folder up to date by the installer and use it for updates to the system.
– Thorsten Donig
Apr 19 '11 at 18:30
Thank you. My access to internet is via a proxy, have you ever try the "MiKTeX Net Installer" with a proxy?
– Alessandro Jacopson
Apr 19 '11 at 18:36
Thank you. My access to internet is via a proxy, have you ever try the "MiKTeX Net Installer" with a proxy?
– Alessandro Jacopson
Apr 19 '11 at 18:36
No. So you have to try on your own. But you can determine the connection settings and insert a proxy.
– Thorsten Donig
Apr 20 '11 at 8:25
No. So you have to try on your own. But you can determine the connection settings and insert a proxy.
– Thorsten Donig
Apr 20 '11 at 8:25
The links you gave didn't work for me, but I'm found the needed files here: ftp.uni-erlangen.de/mirrors/CTAN/systems/win32/miktex/tm/… both miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma are there, and you don't need the readme file
– Adi Ro
Oct 31 '16 at 8:01
The links you gave didn't work for me, but I'm found the needed files here: ftp.uni-erlangen.de/mirrors/CTAN/systems/win32/miktex/tm/… both miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma are there, and you don't need the readme file
– Adi Ro
Oct 31 '16 at 8:01
@AlessandroJacopson, Is there a link to download all packages at once? Thank You.
– Royi
Dec 4 '16 at 6:44
@AlessandroJacopson, Is there a link to download all packages at once? Thank You.
– Royi
Dec 4 '16 at 6:44
|
show 1 more comment
Have you tried to log into your admin account and then - using the shortcuts in the start menu - to go to the package-manager? There you can manually search for the packages which you access using the usepackage
-command and install them by simply clicking onto the plus on the top left. Important note: Always open the package manager using a right click and choose "Open as admin".
For me this always works out...
2
The keyword of the question is manually.
– percusse
Jul 9 '15 at 9:44
Do you mean to use the Windows admin account? I do have admin privileges, but the problem in this case isn't that I don't have rights on my PC, but that the network firewalls were blocking the automatic installer, I could download packages manually, but could not figure out how to install so I could use them.
– mbmcavoy
Jul 9 '15 at 20:39
add a comment |
Have you tried to log into your admin account and then - using the shortcuts in the start menu - to go to the package-manager? There you can manually search for the packages which you access using the usepackage
-command and install them by simply clicking onto the plus on the top left. Important note: Always open the package manager using a right click and choose "Open as admin".
For me this always works out...
2
The keyword of the question is manually.
– percusse
Jul 9 '15 at 9:44
Do you mean to use the Windows admin account? I do have admin privileges, but the problem in this case isn't that I don't have rights on my PC, but that the network firewalls were blocking the automatic installer, I could download packages manually, but could not figure out how to install so I could use them.
– mbmcavoy
Jul 9 '15 at 20:39
add a comment |
Have you tried to log into your admin account and then - using the shortcuts in the start menu - to go to the package-manager? There you can manually search for the packages which you access using the usepackage
-command and install them by simply clicking onto the plus on the top left. Important note: Always open the package manager using a right click and choose "Open as admin".
For me this always works out...
Have you tried to log into your admin account and then - using the shortcuts in the start menu - to go to the package-manager? There you can manually search for the packages which you access using the usepackage
-command and install them by simply clicking onto the plus on the top left. Important note: Always open the package manager using a right click and choose "Open as admin".
For me this always works out...
answered Jul 9 '15 at 9:38
Guschti WetliGuschti Wetli
411
411
2
The keyword of the question is manually.
– percusse
Jul 9 '15 at 9:44
Do you mean to use the Windows admin account? I do have admin privileges, but the problem in this case isn't that I don't have rights on my PC, but that the network firewalls were blocking the automatic installer, I could download packages manually, but could not figure out how to install so I could use them.
– mbmcavoy
Jul 9 '15 at 20:39
add a comment |
2
The keyword of the question is manually.
– percusse
Jul 9 '15 at 9:44
Do you mean to use the Windows admin account? I do have admin privileges, but the problem in this case isn't that I don't have rights on my PC, but that the network firewalls were blocking the automatic installer, I could download packages manually, but could not figure out how to install so I could use them.
– mbmcavoy
Jul 9 '15 at 20:39
2
2
The keyword of the question is manually.
– percusse
Jul 9 '15 at 9:44
The keyword of the question is manually.
– percusse
Jul 9 '15 at 9:44
Do you mean to use the Windows admin account? I do have admin privileges, but the problem in this case isn't that I don't have rights on my PC, but that the network firewalls were blocking the automatic installer, I could download packages manually, but could not figure out how to install so I could use them.
– mbmcavoy
Jul 9 '15 at 20:39
Do you mean to use the Windows admin account? I do have admin privileges, but the problem in this case isn't that I don't have rights on my PC, but that the network firewalls were blocking the automatic installer, I could download packages manually, but could not figure out how to install so I could use them.
– mbmcavoy
Jul 9 '15 at 20:39
add a comment |
This is a simple and straightforward answer that worked for me.
As an example I'll take the listofitems package of CTAN and Miktex 2.9. We suppose the package is not available in the Miktex Package Manager, otherwise it can be directly installed with the manager.
- Create a local directory where you are gonna have all your manually installed packages. For example:
C:myextrapackagestexlatex
(thetexlatex
folder and subfolder must be there, if not Miktex won't accept the directory as S. Kottwitz said above, butmyextrapackage
can be any path you choose.) - Add the directory
C:myextrapackages
to Miktex. Procedure: go toMiktex Settings
-> select the tabRoots
-> and click on theAdd
Button (more details here)
Note: See that we have left out thetexlatex
folders from the added path. If you try to add the full pathC:myextrapackagestexlatex
to Miktex you may get an error. - Download the .zip file with the package (in our case listofitems.zip available on the CTAN page)
- Unpack the contents of the .zip package file in a package folder with the same name (in our case
listofitems.zip
is unpacked in the folderlistofitems
). - Copy the package folder into your already new added directory. (in this example the final result is the directory
C:myextrapackagestexlatexlistofitems
with all the unpacked files inside)
In the future, if you download more packages, you skip steps 1. and 2. And follow steps 3 through 5 using your available local directory (in this case C:myextrapackagestexlatex
)
add a comment |
This is a simple and straightforward answer that worked for me.
As an example I'll take the listofitems package of CTAN and Miktex 2.9. We suppose the package is not available in the Miktex Package Manager, otherwise it can be directly installed with the manager.
- Create a local directory where you are gonna have all your manually installed packages. For example:
C:myextrapackagestexlatex
(thetexlatex
folder and subfolder must be there, if not Miktex won't accept the directory as S. Kottwitz said above, butmyextrapackage
can be any path you choose.) - Add the directory
C:myextrapackages
to Miktex. Procedure: go toMiktex Settings
-> select the tabRoots
-> and click on theAdd
Button (more details here)
Note: See that we have left out thetexlatex
folders from the added path. If you try to add the full pathC:myextrapackagestexlatex
to Miktex you may get an error. - Download the .zip file with the package (in our case listofitems.zip available on the CTAN page)
- Unpack the contents of the .zip package file in a package folder with the same name (in our case
listofitems.zip
is unpacked in the folderlistofitems
). - Copy the package folder into your already new added directory. (in this example the final result is the directory
C:myextrapackagestexlatexlistofitems
with all the unpacked files inside)
In the future, if you download more packages, you skip steps 1. and 2. And follow steps 3 through 5 using your available local directory (in this case C:myextrapackagestexlatex
)
add a comment |
This is a simple and straightforward answer that worked for me.
As an example I'll take the listofitems package of CTAN and Miktex 2.9. We suppose the package is not available in the Miktex Package Manager, otherwise it can be directly installed with the manager.
- Create a local directory where you are gonna have all your manually installed packages. For example:
C:myextrapackagestexlatex
(thetexlatex
folder and subfolder must be there, if not Miktex won't accept the directory as S. Kottwitz said above, butmyextrapackage
can be any path you choose.) - Add the directory
C:myextrapackages
to Miktex. Procedure: go toMiktex Settings
-> select the tabRoots
-> and click on theAdd
Button (more details here)
Note: See that we have left out thetexlatex
folders from the added path. If you try to add the full pathC:myextrapackagestexlatex
to Miktex you may get an error. - Download the .zip file with the package (in our case listofitems.zip available on the CTAN page)
- Unpack the contents of the .zip package file in a package folder with the same name (in our case
listofitems.zip
is unpacked in the folderlistofitems
). - Copy the package folder into your already new added directory. (in this example the final result is the directory
C:myextrapackagestexlatexlistofitems
with all the unpacked files inside)
In the future, if you download more packages, you skip steps 1. and 2. And follow steps 3 through 5 using your available local directory (in this case C:myextrapackagestexlatex
)
This is a simple and straightforward answer that worked for me.
As an example I'll take the listofitems package of CTAN and Miktex 2.9. We suppose the package is not available in the Miktex Package Manager, otherwise it can be directly installed with the manager.
- Create a local directory where you are gonna have all your manually installed packages. For example:
C:myextrapackagestexlatex
(thetexlatex
folder and subfolder must be there, if not Miktex won't accept the directory as S. Kottwitz said above, butmyextrapackage
can be any path you choose.) - Add the directory
C:myextrapackages
to Miktex. Procedure: go toMiktex Settings
-> select the tabRoots
-> and click on theAdd
Button (more details here)
Note: See that we have left out thetexlatex
folders from the added path. If you try to add the full pathC:myextrapackagestexlatex
to Miktex you may get an error. - Download the .zip file with the package (in our case listofitems.zip available on the CTAN page)
- Unpack the contents of the .zip package file in a package folder with the same name (in our case
listofitems.zip
is unpacked in the folderlistofitems
). - Copy the package folder into your already new added directory. (in this example the final result is the directory
C:myextrapackagestexlatexlistofitems
with all the unpacked files inside)
In the future, if you download more packages, you skip steps 1. and 2. And follow steps 3 through 5 using your available local directory (in this case C:myextrapackagestexlatex
)
answered Jan 31 '17 at 9:40
loved.by.Jesusloved.by.Jesus
1,027917
1,027917
add a comment |
add a comment |
I give here my small personal contribution concerning manual installation of packages in MiKTeX (Windows).
As I find very annoying when there is an error 503 or 404 with the internet connection when trying to install a package (package manager - network update).
My environments:
My whole work is done in the great Debian Linux environment. In fact I rarely use Windows because of its alarming security holes and vulnerabilities.
When there is no Debian Linux available and I am unfortunately forced to use Windows, then I do my Latex work using the USBTEX (Miktex + Texmaker) in Windows environment.
I download the target package from the CTAN repository.
The package xifthen
is used as an example.
In Windows:
Directories used:
All the work is done in a USB stick. USBTEX is installed in this USB stick in the directory:
X:USBTeX-1.7
My work directory:
X:LatexMy_documents
How to install a new package from CTAN if the internet connection is not working or I am getting server connection errors 404 or 503:
MiKTeX - Missing package error during Texmaker compilation:
error:LaTeX Error: File
xifthen.sty' not found.`Using your browser download package
xifthen.tar.lzma
from:
http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packagesUsing 7-zip open the archive
xifthen.tar.lzma
and enterxifthen.tar.lzmaxifthen.tartexmf
Copy (just select all and drag) all directories like:
doc
source
tex
tpm
...
to:
X:USBTeX-1.7programsMiKTeX_2.9
when asked if "Do you still want to merge this folder" answer "Yes"
and if asked to replace files say "Copy and Replace" to replace the old files.
Then run (Windows double click and after give administrator user/password):
X:USBTeX-1.7programsMiKTeX_2.9miktexbinmo_admin.exe
In menu:
General> click on "Refresh FRDB" to add the copied files to database.
The files will look as newly installed.
Now you can compile again in Texmaker (>tools>quick build).
There will be no error concerning this missing package.Please follow the same procedure to install other missing packages.
I hope it will help other users who are having problems with missing packages and would like to perform a manual package installation in MiKTeX (Windows).
add a comment |
I give here my small personal contribution concerning manual installation of packages in MiKTeX (Windows).
As I find very annoying when there is an error 503 or 404 with the internet connection when trying to install a package (package manager - network update).
My environments:
My whole work is done in the great Debian Linux environment. In fact I rarely use Windows because of its alarming security holes and vulnerabilities.
When there is no Debian Linux available and I am unfortunately forced to use Windows, then I do my Latex work using the USBTEX (Miktex + Texmaker) in Windows environment.
I download the target package from the CTAN repository.
The package xifthen
is used as an example.
In Windows:
Directories used:
All the work is done in a USB stick. USBTEX is installed in this USB stick in the directory:
X:USBTeX-1.7
My work directory:
X:LatexMy_documents
How to install a new package from CTAN if the internet connection is not working or I am getting server connection errors 404 or 503:
MiKTeX - Missing package error during Texmaker compilation:
error:LaTeX Error: File
xifthen.sty' not found.`Using your browser download package
xifthen.tar.lzma
from:
http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packagesUsing 7-zip open the archive
xifthen.tar.lzma
and enterxifthen.tar.lzmaxifthen.tartexmf
Copy (just select all and drag) all directories like:
doc
source
tex
tpm
...
to:
X:USBTeX-1.7programsMiKTeX_2.9
when asked if "Do you still want to merge this folder" answer "Yes"
and if asked to replace files say "Copy and Replace" to replace the old files.
Then run (Windows double click and after give administrator user/password):
X:USBTeX-1.7programsMiKTeX_2.9miktexbinmo_admin.exe
In menu:
General> click on "Refresh FRDB" to add the copied files to database.
The files will look as newly installed.
Now you can compile again in Texmaker (>tools>quick build).
There will be no error concerning this missing package.Please follow the same procedure to install other missing packages.
I hope it will help other users who are having problems with missing packages and would like to perform a manual package installation in MiKTeX (Windows).
add a comment |
I give here my small personal contribution concerning manual installation of packages in MiKTeX (Windows).
As I find very annoying when there is an error 503 or 404 with the internet connection when trying to install a package (package manager - network update).
My environments:
My whole work is done in the great Debian Linux environment. In fact I rarely use Windows because of its alarming security holes and vulnerabilities.
When there is no Debian Linux available and I am unfortunately forced to use Windows, then I do my Latex work using the USBTEX (Miktex + Texmaker) in Windows environment.
I download the target package from the CTAN repository.
The package xifthen
is used as an example.
In Windows:
Directories used:
All the work is done in a USB stick. USBTEX is installed in this USB stick in the directory:
X:USBTeX-1.7
My work directory:
X:LatexMy_documents
How to install a new package from CTAN if the internet connection is not working or I am getting server connection errors 404 or 503:
MiKTeX - Missing package error during Texmaker compilation:
error:LaTeX Error: File
xifthen.sty' not found.`Using your browser download package
xifthen.tar.lzma
from:
http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packagesUsing 7-zip open the archive
xifthen.tar.lzma
and enterxifthen.tar.lzmaxifthen.tartexmf
Copy (just select all and drag) all directories like:
doc
source
tex
tpm
...
to:
X:USBTeX-1.7programsMiKTeX_2.9
when asked if "Do you still want to merge this folder" answer "Yes"
and if asked to replace files say "Copy and Replace" to replace the old files.
Then run (Windows double click and after give administrator user/password):
X:USBTeX-1.7programsMiKTeX_2.9miktexbinmo_admin.exe
In menu:
General> click on "Refresh FRDB" to add the copied files to database.
The files will look as newly installed.
Now you can compile again in Texmaker (>tools>quick build).
There will be no error concerning this missing package.Please follow the same procedure to install other missing packages.
I hope it will help other users who are having problems with missing packages and would like to perform a manual package installation in MiKTeX (Windows).
I give here my small personal contribution concerning manual installation of packages in MiKTeX (Windows).
As I find very annoying when there is an error 503 or 404 with the internet connection when trying to install a package (package manager - network update).
My environments:
My whole work is done in the great Debian Linux environment. In fact I rarely use Windows because of its alarming security holes and vulnerabilities.
When there is no Debian Linux available and I am unfortunately forced to use Windows, then I do my Latex work using the USBTEX (Miktex + Texmaker) in Windows environment.
I download the target package from the CTAN repository.
The package xifthen
is used as an example.
In Windows:
Directories used:
All the work is done in a USB stick. USBTEX is installed in this USB stick in the directory:
X:USBTeX-1.7
My work directory:
X:LatexMy_documents
How to install a new package from CTAN if the internet connection is not working or I am getting server connection errors 404 or 503:
MiKTeX - Missing package error during Texmaker compilation:
error:LaTeX Error: File
xifthen.sty' not found.`Using your browser download package
xifthen.tar.lzma
from:
http://www.ctan.org/tex-archive/systems/win32/miktex/tm/packagesUsing 7-zip open the archive
xifthen.tar.lzma
and enterxifthen.tar.lzmaxifthen.tartexmf
Copy (just select all and drag) all directories like:
doc
source
tex
tpm
...
to:
X:USBTeX-1.7programsMiKTeX_2.9
when asked if "Do you still want to merge this folder" answer "Yes"
and if asked to replace files say "Copy and Replace" to replace the old files.
Then run (Windows double click and after give administrator user/password):
X:USBTeX-1.7programsMiKTeX_2.9miktexbinmo_admin.exe
In menu:
General> click on "Refresh FRDB" to add the copied files to database.
The files will look as newly installed.
Now you can compile again in Texmaker (>tools>quick build).
There will be no error concerning this missing package.Please follow the same procedure to install other missing packages.
I hope it will help other users who are having problems with missing packages and would like to perform a manual package installation in MiKTeX (Windows).
edited Jul 9 '15 at 8:50
egreg
733k8919313256
733k8919313256
answered Jul 9 '15 at 8:39
tex_funtex_fun
111
111
add a comment |
add a comment |
A similar yet a little bit different way than Alessandro Jacopson's answer is the following:
- Use the miktex setting (user and/or admin) program installed with the basic MikTex distribution to set "Install missing packages on-the-fly" to "Ask me first".
Create a miktex local repository as in Alessandro Jacopson's answer, i.e., create a folder with appropriate name, then place
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
from CTAN in the folder.
Compile a .tex file. If anything used in the file is missing, a dialog window will prompt up to ask you if you'd like to install the first missing package.
Go to CTAN and download said package into the local repository where you have put miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma.
Choose your local repository in the dialog window from step 3. Then click install in the dialog window.
Repeat steps 4-5, if any other packages are missing.
This way, you could install needed packages on-the-fly, even on a computer that can only access Internet via a navigator. There is also no need to download everything from CTAN which can be a little challenging to do, if internet access is very limited. Potentially you may need to install quite a few packages, but every package only needs to be installed once. The steps for installing on-the-fly are also relatively short.
I have had to do this a few times, since my company uses a proxy script to control internet access, and MikTex does not allow this kind of proxy.
One thing that you need to look out for is that the two files miktex-zzdbxxxxxx are sometimes updated, and therefore your local repository wouldn't work any more. So if the trick worked before, and suddenly stopped working, it's probably because you have to update (manually download) these two files again.
add a comment |
A similar yet a little bit different way than Alessandro Jacopson's answer is the following:
- Use the miktex setting (user and/or admin) program installed with the basic MikTex distribution to set "Install missing packages on-the-fly" to "Ask me first".
Create a miktex local repository as in Alessandro Jacopson's answer, i.e., create a folder with appropriate name, then place
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
from CTAN in the folder.
Compile a .tex file. If anything used in the file is missing, a dialog window will prompt up to ask you if you'd like to install the first missing package.
Go to CTAN and download said package into the local repository where you have put miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma.
Choose your local repository in the dialog window from step 3. Then click install in the dialog window.
Repeat steps 4-5, if any other packages are missing.
This way, you could install needed packages on-the-fly, even on a computer that can only access Internet via a navigator. There is also no need to download everything from CTAN which can be a little challenging to do, if internet access is very limited. Potentially you may need to install quite a few packages, but every package only needs to be installed once. The steps for installing on-the-fly are also relatively short.
I have had to do this a few times, since my company uses a proxy script to control internet access, and MikTex does not allow this kind of proxy.
One thing that you need to look out for is that the two files miktex-zzdbxxxxxx are sometimes updated, and therefore your local repository wouldn't work any more. So if the trick worked before, and suddenly stopped working, it's probably because you have to update (manually download) these two files again.
add a comment |
A similar yet a little bit different way than Alessandro Jacopson's answer is the following:
- Use the miktex setting (user and/or admin) program installed with the basic MikTex distribution to set "Install missing packages on-the-fly" to "Ask me first".
Create a miktex local repository as in Alessandro Jacopson's answer, i.e., create a folder with appropriate name, then place
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
from CTAN in the folder.
Compile a .tex file. If anything used in the file is missing, a dialog window will prompt up to ask you if you'd like to install the first missing package.
Go to CTAN and download said package into the local repository where you have put miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma.
Choose your local repository in the dialog window from step 3. Then click install in the dialog window.
Repeat steps 4-5, if any other packages are missing.
This way, you could install needed packages on-the-fly, even on a computer that can only access Internet via a navigator. There is also no need to download everything from CTAN which can be a little challenging to do, if internet access is very limited. Potentially you may need to install quite a few packages, but every package only needs to be installed once. The steps for installing on-the-fly are also relatively short.
I have had to do this a few times, since my company uses a proxy script to control internet access, and MikTex does not allow this kind of proxy.
One thing that you need to look out for is that the two files miktex-zzdbxxxxxx are sometimes updated, and therefore your local repository wouldn't work any more. So if the trick worked before, and suddenly stopped working, it's probably because you have to update (manually download) these two files again.
A similar yet a little bit different way than Alessandro Jacopson's answer is the following:
- Use the miktex setting (user and/or admin) program installed with the basic MikTex distribution to set "Install missing packages on-the-fly" to "Ask me first".
Create a miktex local repository as in Alessandro Jacopson's answer, i.e., create a folder with appropriate name, then place
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
from CTAN in the folder.
Compile a .tex file. If anything used in the file is missing, a dialog window will prompt up to ask you if you'd like to install the first missing package.
Go to CTAN and download said package into the local repository where you have put miktex-zzdb1-2.9.tar.lzma and miktex-zzdb2-2.9.tar.lzma.
Choose your local repository in the dialog window from step 3. Then click install in the dialog window.
Repeat steps 4-5, if any other packages are missing.
This way, you could install needed packages on-the-fly, even on a computer that can only access Internet via a navigator. There is also no need to download everything from CTAN which can be a little challenging to do, if internet access is very limited. Potentially you may need to install quite a few packages, but every package only needs to be installed once. The steps for installing on-the-fly are also relatively short.
I have had to do this a few times, since my company uses a proxy script to control internet access, and MikTex does not allow this kind of proxy.
One thing that you need to look out for is that the two files miktex-zzdbxxxxxx are sometimes updated, and therefore your local repository wouldn't work any more. So if the trick worked before, and suddenly stopped working, it's probably because you have to update (manually download) these two files again.
edited Jun 10 '16 at 13:49
answered Jun 10 '16 at 12:25
vermouthvermouth
112
112
add a comment |
add a comment |
Create a folder in your computer (for example, C:MyUsepackage).
Download the following two files at here.
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
You might need to wait a minute for loading the list if you visit this website first time.
Thanks for this post.Put these two files into the folder you created.
Start->All Programs->MiKTeX 2.9->Maintenance (Admin)->Settings (Admin).
Don't use "Search programs and files". It's an idiot!Switch to the "Packages" label and press "Change" button.
Select "Packages shall be installed from a directory" and browse the folder you created.
Wait a minute.
Now you just download the usepackages you need from the archive
and place them in the folder C:MyUsepackage. They are all xxx.tar.lzma files. You don't have to extract them if you use WinEdt. It will do that when it is compiling your tex file.Note that sometime the usepackage you included has a different name from the xxx.tar.lzma file. You can know the xxx.tar.lzma file's name in the warning message.
add a comment |
Create a folder in your computer (for example, C:MyUsepackage).
Download the following two files at here.
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
You might need to wait a minute for loading the list if you visit this website first time.
Thanks for this post.Put these two files into the folder you created.
Start->All Programs->MiKTeX 2.9->Maintenance (Admin)->Settings (Admin).
Don't use "Search programs and files". It's an idiot!Switch to the "Packages" label and press "Change" button.
Select "Packages shall be installed from a directory" and browse the folder you created.
Wait a minute.
Now you just download the usepackages you need from the archive
and place them in the folder C:MyUsepackage. They are all xxx.tar.lzma files. You don't have to extract them if you use WinEdt. It will do that when it is compiling your tex file.Note that sometime the usepackage you included has a different name from the xxx.tar.lzma file. You can know the xxx.tar.lzma file's name in the warning message.
add a comment |
Create a folder in your computer (for example, C:MyUsepackage).
Download the following two files at here.
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
You might need to wait a minute for loading the list if you visit this website first time.
Thanks for this post.Put these two files into the folder you created.
Start->All Programs->MiKTeX 2.9->Maintenance (Admin)->Settings (Admin).
Don't use "Search programs and files". It's an idiot!Switch to the "Packages" label and press "Change" button.
Select "Packages shall be installed from a directory" and browse the folder you created.
Wait a minute.
Now you just download the usepackages you need from the archive
and place them in the folder C:MyUsepackage. They are all xxx.tar.lzma files. You don't have to extract them if you use WinEdt. It will do that when it is compiling your tex file.Note that sometime the usepackage you included has a different name from the xxx.tar.lzma file. You can know the xxx.tar.lzma file's name in the warning message.
Create a folder in your computer (for example, C:MyUsepackage).
Download the following two files at here.
miktex-zzdb1-2.9.tar.lzma
miktex-zzdb2-2.9.tar.lzma
You might need to wait a minute for loading the list if you visit this website first time.
Thanks for this post.Put these two files into the folder you created.
Start->All Programs->MiKTeX 2.9->Maintenance (Admin)->Settings (Admin).
Don't use "Search programs and files". It's an idiot!Switch to the "Packages" label and press "Change" button.
Select "Packages shall be installed from a directory" and browse the folder you created.
Wait a minute.
Now you just download the usepackages you need from the archive
and place them in the folder C:MyUsepackage. They are all xxx.tar.lzma files. You don't have to extract them if you use WinEdt. It will do that when it is compiling your tex file.Note that sometime the usepackage you included has a different name from the xxx.tar.lzma file. You can know the xxx.tar.lzma file's name in the warning message.
edited Aug 15 '18 at 7:05
answered Aug 2 '18 at 0:34
bfhahabfhaha
1114
1114
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- 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%2ftex.stackexchange.com%2fquestions%2f2063%2fhow-can-i-manually-install-a-package-on-miktex-windows%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
In case someone is looking for that: How to install an individual package on a Linux system (TeX Live)
– riddleculous
Apr 15 '16 at 14:32
4
Not an answer, but a suggestion: If your time is more valuable that the space in your hard disk, at home make a full install of MikTeX or TeXLive.
– Fran
Oct 27 '16 at 12:03