
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Install Matplotlib on Mac 10.7 in Virtualenv
To install Matplotlib in virtualenv, we can take the following steps in terminal −
- vritualenv <env_name e.g env>
- source env/bin/activate
- pip install matplotlib
- pip freeze > requirements.txt
- cat requirements.txt (To see the Matplotlib details)
Advertisements