1

I am a Windows user but I wanted to use the iconv Linux command line, used in order to convert file from one encoding to an other. Moreover, I wanted to use this in one of my Python 2.7 program.

So I found this package.

Using the cmd Command Prompt and after solving the "Unable to find vcvarsall.bat" (VS 2013) issue, I now have an error message saying:

iconvmodule.c(1): fatal error C1083: Cannot open include file: 'iconv.h': No such file or directory

Can someone explain to me how to fix this please?

Community
  • 1
  • 1
Delgan
  • 18,571
  • 11
  • 90
  • 141

1 Answers1

2

Maybe you should compile libiconv library first. iconv.h lives in libiconv.

The guide is here.

fred.yu
  • 865
  • 7
  • 10
  • I followed the tutorial carefully but I have yet compilation errors (`missing ')' before '('` line 47 for example, among others). Too bad, I'll try something else. Thank you anyway for taking the time to help me. – Delgan May 20 '14 at 02:05