- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Perl Installation on Macintosh Platform
In order to build your own version of Perl, you will need 'make', which is part of the Apple developer tools usually supplied with Mac OS install DVDs. You do not need the latest version of Xcode (which is now charged for) in order to install make.
Here are the simple steps to install Perl on Mac OS X machine.
Open a Web browser and go to https://www.perl.org/get.html.
Follow the link to download the zipped source code available for Mac OS X.
Download the perl-5.x.y.tar.gz file and issue the following commands at $ prompt.
$tar -xzf perl-5.x.y.tar.gz $cd perl-5.x.y $./Configure -de $make $make test $make install
This will install Perl in a standard location /usr/local/bin and its libraries are installed in /usr/local/lib/perlXX, where XX is the version of Perl that you are using.
- Related Articles
- Perl Installation on Windows Platform
- Perl Installation on Unix and Linux Platform
- HTML5 Fonts for Macintosh Systems
- Cypress Installation (Test Automation)
- MySQL Installation Related Programs
- How to run amd64 Docker images on the arm64 host platform?
- mysql_secure_installation - Improve MySQL Installation Security
- Explain JMeter installation in macOS
- Introduction and Installation of Nightmare.js
- Introduction and Installation of Svelte
- Is Flutter a stable platform to develop cross platform application?
- Evaluating MLOps Platform
- nginx ssl certificate installation in linux
- Checking SAP Business One installation programmatically
- Steps to upgrade a MySQL installation

Advertisements