Installing yaml for Python 3.6 through pip
See original GitHub issueI just noticed that the pip version of yaml only works with python 3.5. I wonder, can someone update the package list on pypi.python.org
so that people can install yaml for python 3.6 as well?
Issue Analytics
- State:
- Created 6 years ago
- Comments:11 (1 by maintainers)
Top Results From Across the Web
How do I install the yaml package for Python? - Stack Overflow
You could try the search feature in pip, $ pip search yaml. which looks for packages in PyPI with yaml in the short...
Read more >Installing — Python YAML package documentation
yaml . ruamel.yaml itself should be installed from PyPI using: pip install ruamel ...
Read more >How do I install the yaml package for Python - Edureka
I have a Python program that uses YAML. I attempted to install it on a new server using pip install yaml and it...
Read more >PyYAML · PyPI
YAML is a data serialization format designed for human readability and interaction with scripting languages. PyYAML is a YAML parser and emitter for...
Read more >PyYAML is a YAML parser and emitter for Python.
Unpack the archive and install the package by executing ... #60 – Document and test Python 3.6 support; #61 – Use Travis CI...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
pip install pyyaml
works for me withPython 3.6
.pip install pyyaml works for me in every release of 3.6.
Given that pyyaml compiles stuff during installation, the most likely problem is that @Amir-Arsalan is missing python development libs in his 3.6 install. Same solution as @mei-li