Search found 10 matches

by Pierre
18 Mar 2015, 17:44
Forum: Feature requests
Topic: Python 3 support
Replies: 4
Views: 6162

Re: Python 3 support

Yes exactly, that's pretty much what the decorator is doing. I forgot to add the other function:

Code: Select all

def tbs(str):
    return bytes(str, 'ascii')
by Pierre
18 Mar 2015, 10:29
Forum: Feature requests
Topic: Python 3 support
Replies: 4
Views: 6162

Re: Python 3 support

I haven't done much test but as far as I know that was this only problem. I let you know if I find anything else.

BTW I'm not sure the code I post is the best way to solve this issue, but it works though :-)
by Pierre
17 Mar 2015, 14:50
Forum: Feature requests
Topic: Python 3 support
Replies: 4
Views: 6162

Python 3 support

Hi, I was wondering if the remote API of V-REP will be compatible with Python 3? There seems to be issue with the string passed as argument. When using this decorator wrapping v-rep calls it seems to work: def py3compatible(f): if sys.version_info >= (3,0): def wrapped_f(*args, **kwargs): args = [tb...
by Pierre
11 Dec 2014, 11:28
Forum: Feature requests
Topic: Specifying the remoteApiPort using the command line
Replies: 1
Views: 3267

Specifying the remoteApiPort using the command line

Hi everyone, Is there a way to directly specify the port for the remote Api connection as an argument of the command line or by specifying a specific config file ? I know you can directly modify the remoteApiConnections.txt file, but as I'm using v-rep on a cluster it means that I have to submit a j...
by Pierre
04 Dec 2014, 17:34
Forum: General questions
Topic: Log when not starting
Replies: 10
Views: 5973

Re: Log when not starting

Thanks it was a problem with the libc version!
by Pierre
03 Dec 2014, 18:06
Forum: General questions
Topic: Log when not starting
Replies: 10
Views: 5973

Re: Log when not starting

By running the vrep.sh file using the classical:
./vrep.sh
by Pierre
03 Dec 2014, 13:02
Forum: General questions
Topic: Log when not starting
Replies: 10
Views: 5973

Log when not starting

Hi all, I'm trying to run v-rep on a linux cluster but it seems like one of the library needed by v-rep is not present. It displays the following message when launching vrep: [mylogin@avakas-frontend1 V-REP_PRO_EDU_V3_1_3_rev2b_64_Linux]$ ./vrep Error: could not find or correctly load the V-REP libr...
by Pierre
26 Nov 2014, 11:00
Forum: Bug reports
Topic: Headless mode on mac
Replies: 4
Views: 3774

Re: Headless mode on mac

Done! Thanks in advance for your help.
by Pierre
25 Nov 2014, 11:31
Forum: Bug reports
Topic: Headless mode on mac
Replies: 4
Views: 3774

Re: Headless mode on mac

Yes, the exact same code is running without problem when not in headless mode.
I'm working with the version V3.1.3 rev. 2b.

Cheers
by Pierre
24 Nov 2014, 17:47
Forum: Bug reports
Topic: Headless mode on mac
Replies: 4
Views: 3774

Headless mode on mac

Hi everyone, I'm currently trying to connect to v-rep in headless mode using the python remote API. It's working fine under my ubuntu laptop but it fails (most of the time...) under mac os. What I'm trying to do basically looks like this: cid = vrep.simxStart('127.0.0.1', 19997, True, True, 5000, 5)...