Install Kivy Mac For Spyder
Installing Spyder3 for Ubuntu 16.04.3 LTS: In this video, I show how to install Spyder3. This installation automatically installs Pandas. Install Anaconda, Jupyter Notebook, Spyder,Python 3 on Windows 7,8,10,Linux and Mac Installing Anaconda 3 Python 3 distribution on Windows 7.

Im trying to install pygame on spyder but i tried everything and nothing works. Anaconda is installed i have tried pip, conda but every time when i import it i get the error no module named pygame. When i try conda install -c pygame the following error appears: UnsatisfiableError: The following specifications were found to be in conflict: - pygame -> python 2.7* -> openssl 1.0.1* - python 3.6** I have tried other addresses as well but i get the same error.
The choice of a media player to use entirely depends on the user and the use case scenario. This list is by no means an exhaustive one. We are here with a list of the best available Mac media players for OS X. Download vlc media player for macbook air. But, there is nothing to fear.
How do i do it? Use conda info to see the dependencies for each package.
So I want this to work specidically in the newest version of spyder(spyder3)(maybe with pythonpathmanager). Im trying to install pygame on spyder & So i want this to work specidically in the newest version of spyder(spyder3)(maybe with pythonpathmanager You don't install Pygame for Spyder, it's a Python module, so you install it for a particular Python interpreter (or for various). I have tried pip, conda but every time when i import it i get the error no module named pygame There's nothing to import, you never installed the module because of UnsatisfiableError.
UnsatisfiableError: The following specifications were found to be in conflict: - pygame -> python 2.7 -> openssl 1.0.1* - python 3.6** That particular conda package you are trying to download seems to depend on python 2.7, if you, you can check the info/index.json file, it marks python 2.7* as dependency. Installing with pip 1) Activate the virtual environment where you want to install Pygame or, if you are not using environments, make sure that you are using the Python interpreter for which you want to install the module, do this with which python, it should point to your intended interpreter.
Note: The location to where pip installs modules depends on the selected Python interpreter. The Python interpreter you use and the launched spyder instance depend on their precedence on your. If you use environments, these aren't problems, because the env tool ( conda, venv, virtualenv, &c) will modify the PATH as needed.
2) pip install pygame, add sudo if you intend to install for the system's default interpreter on /usr/bin/python. That's it, you should be able to import it. Additional notes: If you are interested in using the (this is what pip installs), but manage it with conda, then you need to. If you have already installed Pygame somewhere and wants to use it with a Python interpreter that doesn't know about it, you can use the environment variable to let Python know from where else it can try to find it. This may not be such a good idea depending on the situation.
It should be easy but there is no conda installer built for it. Python 2 At command line sudo apt-get install python-pygame Python 3 It's a bit of a pain in the butt you have to install some dependencies, and then Pygame. First do the following: sudo apt-get install python3-dev mercurial sudo apt-get install libsdl-image1.2-dev libsdl2-dev libsdl-ttf2.0-dev sudo apt-get install libsdl-mixer1.2-dev libportmidi-dev sudo apt-get install libswscale-dev libsmpeg-dev libavformat-dev libavcodec-dev Make sure numpy is up to date: conda install numpy Then you can finally install Pygame: pip install --user hg+To make sure it works just enter, at the command line: python3 import pygame Worked for me. This is from the website for the Python Crash course book.