
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
Simplest Way to Make Matplotlib in OSX Work in a Virtual Environment
To make matplotlib in OSX work in a virtual environment, we can first create a virtual environment and then activate that created environment. Thereafter, install all the dependencies in that virtual environment.
Steps
- Open ubuntu terminal.
- apt-get install python-venv
- python -m venv <name of virtualenv>
- source <name of virtualenv>/bin/activate
Advertisements