Skip to content

Instantly share code, notes, and snippets.

View jafetmorales's full-sized avatar

Jafet Morales jafetmorales

View GitHub Profile
@jafetmorales
jafetmorales / output.txt
Created October 30, 2017 15:52
Output of pip install numpy on MSYS2, using Python 3.6.2
Collecting numpy
Using cached numpy-1.13.3.zip
Building wheels for collected packages: numpy
Running setup.py bdist_wheel for numpy: started
Running setup.py bdist_wheel for numpy: finished with status 'error'
Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-vho1lbi6/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmpahoov4mwpip-wheel- --python-tag cp36:
Running from numpy source directory.
blas_opt_info:
blas_mkl_info:
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
@jafetmorales
jafetmorales / output.txt
Created November 2, 2017 17:21
Unable to pip install btef C extension in MSYS2
Collecting btef
Using cached btef-0.1.tar.gz
Building wheels for collected packages: btef
Running setup.py bdist_wheel for btef: started
Running setup.py bdist_wheel for btef: finished with status 'error'
Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-le6ys8sd/btef/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmpa4fkl9c3pip-wheel- --python-tag cp36:
running bdist_wheel
running build
running build_ext
building 'btef' extension
@jafetmorales
jafetmorales / make_github_issue.py
Created August 9, 2018 20:13 — forked from JeffPaine/make_github_issue.py
Make an issue on github using API V3 and Python
import json
import requests
# Authentication for user filing issue (must have read/write access to
# repository to add issue to)
USERNAME = 'CHANGEME'
PASSWORD = 'CHANGEME'
# The repository to add this issue to
REPO_OWNER = 'CHANGEME'
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});