
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to install libxml2 with python modules on Mac?
You can install libxml2 using the following commands:
$ brew install --framework python $ brew install --with-python libxml2 $ brew install --with-python libxslt $ brew link libxml2 --force $ brew link libxslt --force
If you had already installed libxml2 but it had failed or any other error, you can uninstall it and then reinstall it using:
$ brew unlink libxml2 $ brew uninstall libxml2 $ brew unlink libxslt $ brew uninstall libxslt
- Related Questions & Answers
- What is the most compatible way to install python modules on a Mac?
- How to install Selenium WebDriver on Mac OS?
- How to Install two python modules with same name?
- How to install NumPy for Python 3.3.5 on Mac OSX 10.9?
- How to install Matplotlib on Mac 10.7 in virtualenv?
- How to install Python modules in Cygwin?
- How to install python modules without root access?
- How to install python modules and their dependencies easily?
- How do we use easy_install to install Python modules?
- How to install and import Python modules at runtime?
- How to use pip to install python modules in easy way?
- How to Install Python on Windows?
- How to deploy python modules on Heroku?
- How to set your python path on Mac?
- How to maximize plt.show() using Python on Mac?
Advertisements