The python script runs well so I'm wondering about syntastics complains.
import numpy as np
np.random.seed(123)
syntastic: [no-member] Module 'numpy.random' has no 'seed' member
random_walk = [0]
syntastic: [invalid-name] Invalid constant name "random_walk"
env:
- python 3.5.2
- vim 8.0.66
- windows 8
I added
let g:syntastic_python_python_exec = 'c:\Users\user\Anaconda3\python.exe'
let g:syntastic_python_checkers = ['pylint']
to my _vimrc but it doesn't make any change.