I'm trying to use the np.loadtxt from Numpy in jupyter notebook. But I'm getting this error :

This error pops up only in the jupyter notebook. In any other editor, NumPy works fine. Someone have any idea how to resolve this issue?
import numpy as np
# proper dihedrals
pd_i, pd_j, pd_k, pd_l, phi_0, k_phi, mult = np.loadtxt('dihedrals_proper.dat', unpack=True)
pdih = np.vstack((pd_i,
pd_j,
pd_k,
pd_l)).T
# improper dihedrals
id_i, id_j, id_k, id_l, xsi_0, k_xsi = np.loadtxt('dihedrals_improper.dat', unpack=True)
idih = np.vstack((id_i,
id_j,
id_k,
id_l)).T
# lennard jones and charges
charges, sigma_i, epsilon_i = np.loadtxt('non_bonded.dat', usecols=(1,2,3), unpack=True)


np.__version__to get the numpy version.