ai2010
ai2010
Hi, I think I implemented the library correctly: settings.py: INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'app10minmentors', 'password_reset', ] urls.py: url(r'^password_reset/',include('password_reset.urls',namespace="password_reset")), signin.html {% block content %} {% csrf_token...
I'm trying to run the library as suggested (with python3) but I got the error: `Traceback (most recent call last): File "transform_replay.py", line 3, in from pysc2.lib import app, features,...
Hello, I'm using the following code to select a pciture from an album: ``` $(document).ready(function () { $(".fb-album-container").FacebookAlbumBrowser({ account: "me", accessToken:$localStorage.accessTokenFacebook, showImageText: false, likeButton:false, shareButton: false, //photosCheckbox:false, showAccountInfo: false, lightbox:true,...
I'm trying to run the final zerg bot (zerg_agent_step7.py) through the command: python3 -m pysc2.bin.agent --map Simple64 --agent zergbot.ZergAgent and I got the error: `zerglings = self.get_units_by_type(obs, units.Zerg.Zergling) File "/Users/xx/Desktop/xx/xx/pysc2-tutorial/zergbot.py",...
Hello, I would like to load the images in cache when the app is launched so that when the user open some screen the images are already loaded. Can I...
Hi, I successfully installed the code and end up in the home page (index.html) using 'npm start'. What should I do from there? How do I run it? Thanks