Difference between revisions of "Asymptote: Macintosh"

(Installing Asymptote on a Mac/Linux)
(Installing Asymptote on a Mac/Linux)
Line 35: Line 35:
 
# ''make all''
 
# ''make all''
 
# ''sudo make install''
 
# ''sudo make install''
 
+
If you get an error at the./configure step, stating that there is no acceptable C compiler found in $PATH, a solution is to download and install Xcode (you can get it on the app store.) or Xcode tools<br /><br />
 
You have finished installing Asymptote.
 
You have finished installing Asymptote.
  

Revision as of 16:31, 24 November 2020

Asymptote (Vector Graphics Language)
Getting Started - Basics - Reference - Examples - Macros and Packages - Advanced Asymptote - Help

Useful functions - CSE5 Package

Installing Asymptote on a Mac/Linux

This tutorial was tested on Mac OS 10.15.7 "Catalina," but should work for most older systems as well as other Unix systems


Download the Asymptote source here (at the time of this edit, it is version 2.68) by selecting the latest version and downloading the asymptote-x.xx.src.tgz file.
Download and install MacTeX.
Note that anywhere you see "x.xx", replace it with the Asymptote version number (e.g. If the file name was asymptote-2.68.src.tgz, you would replace x.xx with 2.68).

There are two ways to actually install Asymptote: using the AsyIntaller written by PrintrBot, or installing it manually.

Installing via the AsyInstaller

  1. Download the code from GitHub here
  2. Unzip the folder if it was not automatically.
  3. Double click the asyinstaller file and follow the instructions in the installer.

If all went well, Asymptote should be installed.

Installing Manually

Terminal commands are italicized.

  1. Open Terminal (located in /Applications/Utilities/Terminal.app)
  2. Run: cd ~/Downloads # or wherever you put the asymptote-x.xx.src.tgz file
  3. tar -xvzf asymptote-x.xx.src.tgz
  4. cd asymptote-x.xx
  5. ./configure
  6. make all
  7. sudo make install

If you get an error at the./configure step, stating that there is no acceptable C compiler found in $PATH, a solution is to download and install Xcode (you can get it on the app store.) or Xcode tools

You have finished installing Asymptote.

Usage

Suppose that on the Desktop, you have a file named asyfile.tex

Here is a sample file:

\documentclass[letterpaper,12pt]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{asymptote}

\begin{document}
\begin{asy}
    size(300);
    draw((0,0)--(1,1),blue);
\end{asy}
\end{document}

Use whatever LaTeX editor to compile the file. It will return a warning that looks something like this:

Package asymptote Warning: file asyfile_1.pdf does not exist on input line 17.

Terminal again.

cd ~/Desktop
asy asyfile

That will run asymptote on the file asyfile.asy, (created when the tex file was compiled) producing asyfile_1.pdf.

Now run latex on asyfile.tex again, and with any luck, it should compile with no errors. (The image produces a diagonal blue line.)


Automation

This post describes a shell script that automates the compilation process.